讲师回答 / 西门老舅
看你代码,应该嵌套出现了问题,可以好好检测一下代码嵌套是否正确router.get('/json', async (ctx, next) => { ctx.body = { title: 'koa2 json' }})router.post('/list', async (ctx, next) => { ctx.body = 'list'})
2020-11-27