gpt4 book ai didi

node.js - 提供多种内容类型

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:02:21 24 4
gpt4 key购买 nike

我正在使用 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>');
});

特别是,上面的代码看起来比较重复,可能有更标准的写法。

最佳答案

有一种 response.format 方法,它使用基于“接受” 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com