koa-router源码分析
koa-router源码地址是 koa-router
当前解读版本为7.2.1
关系图
代码结构图

执行流程图

关系对应图

Router方法和属性浅析
methods.forEach
注册注册路由的方法,结果就是Router的原型上面多了get,post,delete,del等注册路由的方法
代码使用的时候 r1.get就是这么来的
r1.get('/test1/:id', function (ctx, next) {
console.log('test1 :1')
next()
}, function (ctx, next) {
console.log('test1:2')
})
Router.prototype.del
等同于 Router.prototype.delete
Router.prototype.use
注册中间件,支持形式多种多样
看着这么多,其实就两种中间件,
- 普通中间件
- router.routes()返回的中间件
重点就是router.routes()返回的这种件,需要的前缀,参数验中间件做一些处理
router.use(function (ctx, next) {
ctx.foo = 'baz';
return next();
});
router.use('/foo/bar', function (ctx, next) {
ctx.foo = 'foo';
return next();
});
router.use('/foo', subrouter.routes());
router.use(['/foo', '/bar'], function (ctx, next) {
ctx.foo = 'foo';
ctx.bar = 'bar';
return next();
});
parentRouter.use('/parent-route', function (ctx, next) {
ctx.n = ctx.n ? (ctx.n + 1) : 1;
return next();
}, nestedRouter.routes());
Router.prototype.prefix
给router实例添加前缀,前缀可以是包含参数的
router.prefix('/things/:thing_id')
Router.prototype.routes = Router.prototype.middleware
返回中间件,
中间执行的时候,会根据path获取满足匹配条件的路由(Layer),然后根据每个Layer生成一个解析参数值的中间,这就是为什么我们在ctx.params能得到参数值
最核心的代码如下
layerChain = matchedLayers.reduce(function(memo, layer) {
memo.push(function(ctx, next) {
ctx.captures = layer.captures(path, ctx.captures);
ctx.params = layer.params(path, ctx.captures, ctx.params);
return next();
});
return memo.concat(layer.stack);
}, []);
return compose(layerChain)(ctx, next);
matchedLayers是匹配的Layer或者说一条路由信息,同一个路径同样的方法也是会生成两条记录的,如下同样的注册,会生成两个不同路由(Layer),哪怕信息一模一样
r1.get('/test1', function (ctx, next) {
console.log('test1 :1')
next()
})
r1.get('/test1', function (ctx, next) {
console.log('test1 :2')
next()
})
matchedLayers.reduce没执行一次,是生成两个中间件,
一个是参数解析的中间件,这就是为什么你可以通过ctx.params取值到路由参数了
function(ctx, next) {
ctx.captures = layer.captures(path, ctx.captures);
ctx.params = layer.params(path, ctx.captures, ctx.params);
return next();
}
另外一个才是实际路由匹配的执行方法,上面的demo就是
function (ctx, next) {
console.log('test1 :1')
next()
}
Router.prototype.allowedMethods
此方法执行很靠后,在他后面注册的中间件执行完毕后才执行
生成一个中间件,作用是定义路由没匹配到,方法未允许,方法未实现等的返回信息
app.use(router.routes());
app.use(router.allowedMethods({
throw: true,
notImplemented: () => new Boom.notImplemented(),
methodNotAllowed: () => new Boom.methodNotAllowed()
}));
Router.prototype.all
注册一个路由,允许所有的get,post等方法访问
Router.prototype.redirect
跳转,原理就是注册了一个路由,用ctx.redirect来实现跳转
router.redirect('/login', 'sign-in');
等同于
router.all('/login', function (ctx) {
ctx.redirect('/sign-in');
ctx.status = 301;
});
Router.prototype.register
核心方法之一,注册中间件
Router.prototype.all,methods.forEach等底层都是调用这个家伙实现的
Router.prototype.use也依据情况会调用
Router.prototype.route
查找具名的route(Layer)
Router.prototype.url
生成url,可以传参
router.get('user', '/users/:id', function (ctx, next) {
// ...
});
router.url('user', 3);
// => "/users/3"
router.url('user', { id: 3 });
// => "/users/3"
router.use(function (ctx, next) {
// redirect to named route
ctx.redirect(ctx.router.url('sign-in'));
})
Router.prototype.match
获得匹配的路由(Layer),以path和method来过滤的
router.routes返回的中间件底层就是通过他来确认请求应该进入哪些路由的
Router.prototype.param
添加参数验证中间件,这个需要结合Layer.prototype.param 一起来理解
Router.prototype.param = function (param, middleware) {
this.params[param] = middleware;
this.stack.forEach(function (route) {
route.param(param, middleware);
});
return this;
};
Layer.prototype.param = function (param, fn) {
var stack = this.stack;
var params = this.paramNames;
// 构建参数验证中间件
var middleware = function (ctx, next) {
return fn.call(this, ctx.params[param], ctx, next);
};
middleware.param = param;
var names = params.map(function (p) {
return p.name;
});
var x = names.indexOf(param);
if (x > -1) {
// iterate through the stack, to figure out where to place the handler fn
stack.some(function (fn, i) {
// param handlers are always first, so when we find an fn w/o a param property, stop here
// if the param handler at this part of the stack comes after the one we are adding, stop here
// fn.param 作为判断是不是参数验证中间件的标志
// 如果不是参数验证中间件,或者参数验证中间件需要验证的参数在我之后,插入参数验证中间件
// 比如说path是这样的 /user/:id/posts/:postid, 那么id参数验证中间件应该在postid参数之前
// 简单说,确保参数按照顺序被验证
if (!fn.param || names.indexOf(fn.param) > x) {
// inject this param handler right before the current item
stack.splice(i, 0, middleware);
return true; // then break the loop
}
});
}
return this;
};
Layer方法和属性浅析
Layer.prototype.match
path是否匹配路由
Layer.prototype.params
获得路由参数键值对
Layer.prototype.captures
获得路由参数的值
Layer.prototype.url
用参数构建URL,params参数可视是对象也可是数组
Layer.prototype.param
添加参数验证中间件
Layer.prototype.setPrefix
设置前缀
safeDecodeURIComponent
decodeURIComponent错误时返回原值
更多细节请直接看带备注的源码吧,写东西真累啊!
Router
Layer
koa-router 源码解析 - segmentfault
解析Koa-Router,迈入Web次时代第一步(上)
Koa-Router 源码解析下 -CNode
koa-router源码解读
koa-router源码分析的更多相关文章
- 手写@koa/router源码
上一篇文章我们讲了Koa的基本架构,可以看到Koa的基本架构只有中间件内核,并没有其他功能,路由功能也没有.要实现路由功能我们必须引入第三方中间件,本文要讲的路由中间件是@koa/router,这个中 ...
- Koa源码分析(三) -- middleware机制的实现
Abstract 本系列是关于Koa框架的文章,目前关注版本是Koa v1.主要分为以下几个方面: Koa源码分析(一) -- generator Koa源码分析(二) -- co的实现 Koa源码分 ...
- Koa源码分析(二) -- co的实现
Abstract 本系列是关于Koa框架的文章,目前关注版本是Koa v1.主要分为以下几个方面: Koa源码分析(一) -- generator Koa源码分析(二) -- co的实现 Koa源码分 ...
- Koa源码分析(一) -- generator
Abstract 本系列是关于Koa框架的文章,目前关注版本是Koa v1.主要分为以下几个方面: 1. Koa源码分析(一) -- generator 2. Koa源码分析(二) -- co的实现 ...
- Dubbo 源码分析 - 集群容错之 Router
1. 简介 上一篇文章分析了集群容错的第一部分 -- 服务目录 Directory.服务目录在刷新 Invoker 列表的过程中,会通过 Router 进行服务路由.上一篇文章关于服务路由相关逻辑没有 ...
- koa2中间件koa和koa-compose源码分析原理(一)
koa是基于nodejs平台的下一代web开发框架,它是使用generator和promise,koa的中间件是一系列generator函数的对象.当对象被请求过来的时候,会依次经过各个中间件进行处理 ...
- koa源码分析
最近项目要使用koa,所以提前学习一下,顺便看了koa框架的源码. 注:源码是koa2.x koa的源码很简洁,关键代码只有4个文件,当然还包括一些依赖npm包 const Koa = require ...
- flask源码分析
本flask源码分析不间断更新 而且我分析的源码全是我个人觉得是很beautiful的 1 flask-login 1.1 flask.ext.login.login_required(func),下 ...
- Backbone.js源码分析(珍藏版)
源码分析珍藏,方便下次阅读! // Backbone.js 0.9.2 // (c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc. // Backbone ...
- docker 源码分析 一(基于1.8.2版本),docker daemon启动过程;
最近在研究golang,也学习一下比较火的开源项目docker的源代码,国内比较出名的docker源码分析是孙宏亮大牛写的一系列文章,但是基于的docker版本有点老:索性自己就git 了一下最新的代 ...
随机推荐
- 基于JQ的单双日历,本人自己写的哈,还没封装,但是也能用
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>小 ...
- LoadRunner压力测试之Unique Number参数类型、Random Number参数类型浅析
前几天工作需要用LoadRunner进行压力测试,期间对手机号进行参数化设置. 当时选用了<Value>137{Random_quhao}{Unique_weiyi}</Value& ...
- 怎么在linux Ubuntu上部署nodejs
今天特别开心,同时也有兴趣把最近的一些工作总结一下. 第一,方便记忆. 第二, 给需要的同学做参考 node.js 在本地的话,比较容易运行,node app.js 命令就搞定,但是当需要部署到生产环 ...
- hdu_1907:John(Nim变形)
题目链接 仍是取石子,不过取到最后一个的败 参考链接:http://www.voidcn.com/blog/liwen_7/article/p-3341825.html 简单一句话就是T2 S0必败 ...
- 51nod_1627:瞬间移动
题目链接:https://www.51nod.com/onlineJudge/questionCode.html#!problemId=1627 还是杨辉三角~ #include<bits/st ...
- Druid 详细介绍
文章来自阿里巴巴 Druid是一个JDBC组件,它包括三部分: DruidDriver 代理Driver,能够提供基于Filter-Chain模式的插件体系. DruidDataSource 高效可 ...
- java中常用的包、类、以及包中常用的类、方法、属性----sql和text\swing
java中常用的包.类.以及包中常用的类.方法.属性 常用的包 java.io.*; java.util.*; java.lang.*; java.sql.*; java.text.*; java.a ...
- Hibernate 实体关联关系映射----总结
在我看来,Hibernate提供这些映射关系,常用就是一对一和多对一,并且在能不用连接表的时候尽量不要用连接表.多对多会用到,如果用到了,应该首先考虑底层数据库设计是否合理. 在实际开发中,在Hi ...
- 存储结构比较vector,list,dequeue,stack(转)
vector适用:对象数量变化少,简单对象,随机访问元素频繁list适用:对象数量变化大,对象复杂,插入和删除频繁最大的区别是,list是双向的,而vector是单向的.因此在实际使用时,如何 ...
- Android学习笔记-开关按钮ToggleButton和开关Switch
本节给大家介绍的Android基本UI控件是:开关按钮ToggleButton和开关Switch,这两个其实都是开关组件,只是后者需要在Android 4.0以后才能使用 所以AndroidManif ...