我正在使用 Express 创建网站和 API,我想在同一路径上提供多种内容类型(JSON、XML、HTML)。在 Express 中是否有更好的方法来编写以下内容:
// Serve JSON requests
app.get('/items/', function(req, res, next){
if(!req.accepts('application/json')){
return next();
}
res.end([1,2,3,4,5]);
});
// Serve XML requests
app.get('/items/', function(req, res, next){
if(!req.accepts('application/xml')){
return next();
}
res.end('<items><item>1</item><item>2</item><item>3</item><item>4</item><item>5</item></items>');
});
// Serve HTML requests
app.get('/items/', function(req, res, next){
if(!req.accepts('text/html')){
return next();
}
res.end('<ul><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li></ul>');
});
特别是,上面的代码似乎相当重复,可能有更标准的写法。
Best Answer-推荐答案 strong>
有一个 response.format 方法,它使用基于“Accept” header 选择某些渲染方法。 http://expressjs.com/4x/api.html#res.format
响应可能如下所示:
res.format({
text: function(){
res.send('hey');
},
html: function(){
res.send('hey');
},
json: function(){
res.send({ message: 'hey' });
}
});
关于node.js - 提供多种内容类型,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/51230142/
|