Hughendman / Hughendman.github.io

2 stars 2 forks source link

node(koa2)快速创建项目 | YINXS的博客 #24

Open Hughendman opened 6 years ago

Hughendman commented 6 years ago

https://hughendman.github.io/post/bde7ce9f.html

Hughendman commented 6 years ago

//新建一个路由文件 const router = require('koa-router')(); router.prefix('/app'); router.get('/',async function (ctx, next) {

});

module.exports = router;