koa2系列教程:koa2路由控制中间件
koa2系列教程,持续更新
- koa2系列教程:koa2应用初见
- koa2系列教程:koa2处理静态文件
- koa2系列教程:koa2使用模板引擎
- koa2系列教程:koa2路由控制中间件
- koa2系列教程:综合koa2搭建登录注册页面
这篇我们来使用一个koa-router, 控制一下路由
本篇的版本:注意版本哦
目录结构:
1.编辑index.js
const Koa = require('koa') const Router = require('koa-router') const app = new Koa() // 子路由1 const home = new Router() home.get('/', async (ctx) => { ctx.body = "home pages" }) // 子路由2 const page = new Router() page.get('/404', async (ctx) => { ctx.body = '404 pages' }) const login = new Router() login.get('/', async (ctx) => { ctx.body = 'login pages' }) // 装载所有子路由 let router = new Router() router.use('/', home.routes(), home.allowedMethods()) router.use('/page', page.routes(), page.allowedMethods()) router.use('/login', login.routes(), login.allowedMethods()) // 加载路由中间件 app.use(router.routes()).use(router.allowedMethods()) app.listen(3000, () => { console.log('localhost:3000') })
2.启动服务,打开浏览器
node index.js
访问:localhost:3000, localhost;3000/login , localhost:3000/page/404
都是可以看的到结果的
关于koa-router其他API
源码地址:https://github.com/alexmingoi...
router .get('/', (ctx, next) => { ctx.body = 'Hello World!'; }) .post('/users', (ctx, next) => { // ... }) .put('/users/:id', (ctx, next) => { // ... }) .del('/users/:id', (ctx, next) => { // ... }) .all('/users/:id', (ctx, next) => { // ... });
后记
关于koa相关的路由控制中间件有很多,就看自己的选择了
这里有个中路由中间件汇集https://cnodejs.org/topic/57838dfaee5f048d54f90877
--
首发于微信公众号:node前端
不妨关注一下
相关推荐
boneix 2020-10-21
MrQuinn 2020-08-16
starzhangkiss 2020-04-19
LorenLiu 2020-03-28
Qimingweikun 2020-03-05
发条戏子 2020-02-01
jackyhungvip 2020-01-19
Qimingweikun 2019-12-09
Anything0 2019-11-17
lert0 2019-11-04
88530198 2019-11-03
sqliang 2019-11-03
苹果咏 2019-07-23
bobbaobao 2018-11-13
lert0 2019-07-01
fanix 2019-07-01
liwenbocsu 2019-07-01