postman+xmysql实现postman与数据库的交互,获取数据库的值来作为参数进行请求

安装nodejs和npm详细步骤:https://www.runoob.com/nodejs/nodejs-install-setup.html

安装xmysql

执行命令: npm install -g xmysql



postman+xmysql实现postman与数据库的交互,获取数据库的值来作为参数进行请求_第1张图片


启动服务

启动xmysql:

xmysql的相关启动参数,可以通过xmysql -h查看

postman+xmysql实现postman与数据库的交互,获取数据库的值来作为参数进行请求_第2张图片


备注:-h,-u,-p,要连接的数据库的信息, -d需要进入的库名

这里注意如果需要测试连接数据库,这个服务不能关闭要一直打开

postman+xmysql实现postman与数据库的交互,获取数据库的值来作为参数进行请求_第3张图片

3、执行sql语句

启动xmysql后,即可通过http://localhost:3000/api/ 访问 xmysql 自动生成的 Rest API,详细的使用方法可通过https://github.com/o1lab/xmysql查看

备注:localhost是mysql服务要启动的机器的ip,3000是xmysql服务默认端口,可在启动时通过-r修改

case1:查询某表数据,get请求:http://localhost:3000/api/table_name:

postman+xmysql实现postman与数据库的交互,获取数据库的值来作为参数进行请求_第4张图片


因为返回的是数组格式,我这里data[0],获取第一组数据里面的内容,存入环境变量之后可以作为参数进行请求 

postman+xmysql实现postman与数据库的交互,获取数据库的值来作为参数进行请求_第5张图片

你可能感兴趣的:(postman+xmysql实现postman与数据库的交互,获取数据库的值来作为参数进行请求)