koa+mysql+小程序 从前端到后台从零实现到部署(二)
上一节我们一节搭建好了项目并且连接了数据库,现在如何操作数据库做一个crud Girl呢
1、首先以用户表为例,先创建用户表所对应的module,module下一个文件可以理解为对应数据库中的一个表,Schema是用来创建表的模型,就是表里有哪些字段
2、在routes里引入
添加用户 就是new一个schema对象,然后保存save,用try catch检查是否添加成功
3、测试接口
我们可以用curl测试
(用法参考
https://www.ruanyifeng.com/blog/2019/09/curl-reference.html
)
curl -d 'username=liming&password=111' http://localhost:3000/user/addUser
code 返回0 添加成功 这时候表里会插入一条数据
下面增删改查也很简单,就不一一展示了
代码看github
https://github.com/Stacey1018/laugh-daily
mongoose文档 https://mongoosejs.com/docs/guide.html