美文网首页
node的前后链条思路

node的前后链条思路

作者: jrg陈咪咪sunny | 来源:发表于2018-11-02 21:11 被阅读0次

curd || resetfo(增删改查)
增删改查就是调用数据库-mysql-sequelize

接口
1.获取所有的 note: GET   /api/notes  req:{ }  res:{stauts: 0, data: [ {},{} ]} {status:1, errorMsg:'失败原因'}

2.创建一个 note:  POST /api/note/creat req:{note: 'hello'} res: {status: 0} {status:1,errorMsg:'失败原因'}

3.修改一个note: POST /api/note/edit req:{note:'new note', id: 100}

4.删除一个note: POST /api/note/delete req:{id: 100}

$ npm install --save sqlite3

相关文章

网友评论

      本文标题:node的前后链条思路

      本文链接:https://www.haomeiwen.com/subject/neipoftx.html