作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
看到 express content negotiator我想根据传入的内容标题来处理响应。
例如,这是我的.get()
。
authRoute.route('/login')
.get(function(req, res) {
res.format({
'text/html': function() {
res.render('login', {
user: req.user,
error: req.flash('error'),
loginMessage: req.flash('loginMessage'),
active: 'login'
});
},
'application/json': function() {
res.json({
message: 'This is login page'
})
}
})
})
我想做的是,如果请求 header 是标准文本/html,它应该显示 html 页面和 json 响应(如果请求是 application/json)。
问题是,它没有正确拦截 header 。尽管我发出请求(通过 Postman),将 header 设置为 application/json
,它仍然在 res.format({..})
中显示第一个条件>
上面的总是显示text/plain
而不是匹配正确的条件。
对我做错了什么有帮助吗?
authRoute.route('/login')
....
.post(passport.authenticate('local-signup', {
successRedirect: '/profile', // redirect to the secure profile section
failureRedirect: '/register', // redirect back to the signup page if there is an error
failureFlash: true // allow flash messages
}))
最佳答案
我的猜测是您可能在请求中使用了错误的 header (可能是 Content-Type
?)。您需要使用 Accept
header 。此外,您的文本显示 json/application
;那当然应该是 application/json
。
我不使用 Postman,但使用 cURL 它工作得很好:
$ curl -H'Accept:application/json' http://localhost:3000
关于javascript - res.format 谈判者与 express router get post,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37546202/
我是一名优秀的程序员,十分优秀!