代码拉取完成,页面将自动刷新
const Router= require('koa-router');
const router= new Router({
prefix:'/api/v1/'
});
router
.get('users',async (ctx)=>{
ctx.body=[
{
id:1,
username:'admin'
},
{
id:2,
username:'user01'
},
{
id:3,
username:'user02'
},
]
})
.post('login',async (ctx)=>{
ctx.body={
code:'1000',
msg:'请示成功!'
}
});
// 在一个node执行一个文件时,会给这个文件内生成一个 exports和module对象,而module有一个exports属性。
// exports = module.exports = {};
module.exports= router;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。