多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
~~~ const Koa = require("koa"); const app = new Koa(); let router = require("koa-router")(); //配置路由 router.get("/",async (ctx,next)=>{ ctx.body="首页" }).get('/news',async (ctx,next)=>{ ctx.body = "新闻"; //动态路由 }).get('/news/:id',async (ctx)=>{ //1.在地址后面配置aid //2.ctx.params获取动态路由的传值 console.log(ctx.params); //{ aid: '456' } ctx.body="新闻详情"; }) app.use(router.routes()).use(router.allowedMethods()); app.listen(3400) ~~~