博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Node.js -- Router模块中有一个param方法
阅读量:6250 次
发布时间:2019-06-22

本文共 985 字,大约阅读时间需要 3 分钟。

这段时间一直有在看Express框架的API,最近刚看到Router,以下是我认为需要注意的地方:

Router模块中有一个param方法,刚开始看得有点模糊,官网大概是这么描述的:

1
Map logic to route parameters.

大概意思就是路由参数的映射逻辑

这个可能一时半会也不明白其作用,尤其是不知道get和param的执行顺序

再看看源码里面的介绍:

1
2
3
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

这就清晰多了,翻译过来就是说:

在所给的参数和回调函数之间做一个映射,作为使用标准化占位符的路由的前提条件。

下面给出一段具体代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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执行

转载于:https://www.cnblogs.com/chris-oil/p/4985542.html

你可能感兴趣的文章
EF异常:WebForm、Console、Winform层不引入EF报错
查看>>
System系统类常用方法
查看>>
15:开发Rsync服务启动脚本案例
查看>>
uva 1592(NEERC 2009 STL)
查看>>
Xqk.Data数据框架使用说明之:使用Xqk.Data的一般步骤
查看>>
makefile
查看>>
C#数据类型
查看>>
HDU_3172_带权并查集
查看>>
Ryubook_1_switch_hub_源码
查看>>
Java几种路径的获取
查看>>
痞子衡嵌入式:ARM Cortex-M文件那些事(4)- 可重定向文件(.o/.a)
查看>>
centos7 源码安装nginx
查看>>
php 下载word 含图片
查看>>
栈的顺序存储实现
查看>>
编年史:OI算法总结
查看>>
IOS Exception 1(RangeText="[SKTexture]()")
查看>>
IOCP基础封装
查看>>
kendo column chart
查看>>
codeforces 721D Maxim and Array
查看>>
sass学习
查看>>