Node Express中app.use与app.get

孔和畅
2023-12-01

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'); });

转载于:https://www.cnblogs.com/haoyi/p/9435448.html

 类似资料: