当前位置: 首页 > 后端技术 > Node.js

KoaRESTful脚手架分享

时间:2023-04-04 00:02:31 Node.js

X-RESTful-API-Generator-Koa用于Koa的RESTfulAPI生成器。启动gitclonenpminpmrundevDemodemoModule_001URL:http://localhost:3000/x-restful-api-generator-koa/demoModule_001/loginResonse:{"code":200,"msg":"登录成功!","data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyTmFtZSI6InRlc3QiLCJwYXNzd29yZCI6IjEyMzQ1NiIsImlhdCI6MTUwODkyMTY2OSwiZXhwIjoxNTA5MDA4MDY5fQ.2occtME3kLUDxntJXOz5e1dkspybGIVqbDPRgaE6lZA"}}URL:http://localhost:3000/x-restful-api-generator-koa/demoModule_001/listResponse:{"code":200,"msg":"列表查询成功!","data":{"count":300,"list":[]}}URL:http://localhost:3000/x-restful-api-generator-koa/demoModule_001/verify/listResponse:{"code":9999,"msg":"令牌无效!请重新登录!","data":{}}ArticlesURL:http://localhost:3000/x-restful-api-generator-koa/articles/addRequest正文:{标题:'myArticle_001'内容:'yyyyyyyyyyyyyyyyyyyyyyyyyy'}响应:{“code":200,"msg":"文章添加成功!","数据":{"id":3,"标题":"myArticle_001","内容":"yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy","updatedAt":"2017-10-27T07:52:21.745Z","createdAt":“2017-10-27T07:52:21.745Z”}}URL:http://localhost:3000/x-restful-api-generator-koa/articles/updateRequest正文:{id:'3'内容:'xxxxxx'}Response:{"code":200,"msg":"编辑文章成功!","data":{"id":3,"title":"myArticle_003","content":"xxxxxx","createdAt":"2017-10-26T23:52:21.000Z","updatedAt":“2017-10-27T00:08:55.000Z”}}URL:http://localhost:3000/x-restful-api-generator-koa/articles/removeRequest正文:{id:'2'}响应:{“code":200,"msg":"删除文章成功!","data":1}URL:http://localhost:3000/x-restful-api-generator-koa/articles/list?pageSize=1¤tPage=1Response:{"code":200,"msg":"查询账户列表成功!","数据":{"计数":2,"列表":[{“id”:1,“标题”:“myArticle_001”,“内容”:“yyyyyyyyyyyyyyyyyyyyyy”,“创建时间”:“2017-10-26T23:46:10.000Z”,“更新时间”:“2017-10-26T23:46:10.000Z"}]}}Develop1.Editconfig.js2.Exportthedatabasetoschemabysequelize-autosequelize-auto-o"./src/schema"-dx-restful-api-generator-koa-hlocalhost-uroot-p3306-emysql3.CreateModulesapps\_newModulesCtrl.jsModel.jsRouters.jsTODO1.错误处理中间件2.文件上传演示