https://github.com/o1lab/xmysql#xmysql--one-command-to-generate-rest-apis-for-any-mysql-database
安装并使用xmysql,生成RESTAPI, xmysql 要求node版本再7.几以上,我本机有两个版本,使用的是8.9.1
xmysql 命令解析:xmysql -h mysql.****.**** -o 3306 -u **** -p **** -d ****_garden -r localhost -n 8090
-h 输入想要链接的安装mysql 的服务器的域名 -o输入上述服务器的端口 -u -p 是要连接的数据库用户名密码 -d 是要连接的数据库中名 -r 是本地机器,通常就写localhost -n是本地可以使用的端口号,因为我的3000被占用,这里用了8090
xmysql在postman中就可以链接数据库,使用数据了
Postman使用数据库的Restful接口
网友评论