🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
路由另一种写法 ~~~ const Koa =require('koa'); const router =require('koa-router')(); let app = new Koa(); router.get('/' ,async (ctx)=>{ ctx.body='你好 koa'; }); router.get('/news' ,async (ctx)=>{ ctx.body='你好 news'; }); router.get('/index' ,async (ctx)=>{ ctx.body='你好 index'; }); app.use(router.routes()); app.use(router.allowedMethods()); app.listen(8000); ~~~