摘要:
注册接口: Post 请求 local host:4000/api/user/register 步骤: (1) 进行验证 (2) 查询数据库,查询的依据是用户的email (3) 进行判断,如果查询得到的数据大于0,则邮箱已经存在,用户被注册了,如果查询数据小于0,就表示用户还没有被注册,我们可以注 阅读全文
摘要:
配置路由 引入路由中间件 const Router= require('koa-router'); 实例化 const router= new Router(); 配置路由地址 router.use('/api/user',user); router.use('/api/profile',profi 阅读全文
摘要:
1.引入mongoose 模块 2.连接数据库 3.引入db 配置文件 4.key.js 阅读全文