const router = require('koa-router')() //返回一个页面 router.get('/', async (ctx, next) => { global.console.log('index11111'); await ctx.render('index', { //render返回一个页面 title: 'Hello Koa 2!' }) }) //直接返回数据的用body,json数据 router.get('/json', async (ctx, next…