Node Express中app.use与app.get

2018-08-07 08:43:58来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

app.use

app.use的作用是将一个中间件绑定到应用中,参数path是一个路径前缀,用于限定中间件的作用范围,所有以该前缀开始的请求路径均是中间件的作用范围,不考虑http的请求方法,例如: 
如果path 设置为’/’,则 
- GET / 
- PUT /foo 
- POST /foo/bar 
均是中间件的作用范围

 

app.get

app.get是express中应用路由的一部分,用于匹配并处理一个特定的请求,且请求方法必须是GET

app.use('/',function(req, res,next) { res.send('Hello'); next(); });

等同于:

app.all(/^\/.*/, function (req, res) { res.send('Hello'); });

 

实例

app.use('/', function(req, res, next) { res.write(' root middleware'); next(); });

app.use('/user', function(req, res, next) { res.write(' user middleware'); next(); });

app.get('/', function(req, res) { res.end(' /'); });

app.get('/user', function(req, res) { res.end(' user'); });

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:JS之简单秒表的制作(精确到10ms)

下一篇:React获取数据,假如为数组,使用map出现的问题