首页 > 代码库 > Node.js笔记(0003)---Express框架Router模块学习笔记
Node.js笔记(0003)---Express框架Router模块学习笔记
这段时间一直有在看Express框架的API,最近刚看到Router,以下是我认为需要注意的地方:
Router模块中有一个param方法,刚开始看得有点模糊,官网大概是这么描述的:
Map logic to route parameters.
大概意思就是路由参数的映射逻辑
这个可能一时半会也不明白其作用,尤其是不知道get和param的执行顺序
再看看源码里面的介绍:
Map the given param placeholder `name`(s) to the given callback. Parameter mapping is used to provide pre-conditions to routes which use normalized placeholders
这就清晰多了,翻译过来就是说:
在所给的参数和回调函数之间做一个映射,作为使用标准化占位符的路由的前提条件。
下面给出一段具体代码:
var express = require(‘express‘);var app = express();var router = express.Router();router.count = 0;router.get(‘/users/:user‘, function(req, res, next) { router.count ++; console.log(router.count);});router.param(‘user‘, function(req, res, next, id) { router.count ++; res.send({count: router.count}); next();});app.use(router);app.listen(3000);
命令行下输入
node xxx.js
浏览器访问
http://localhost:3000/users/bsn
这时候命令行会输出2,而浏览器会输出
{count: 1}
因此,param会先于get执行
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。