如何在Meteor中指定内容类型?
我有一个页面返回JSON,但响应标题为html/text
我需要将其设为application/json
。我正在使用iron-router
,然后通过模板显示json。我只需要更改该页面的响应标题。
我该怎么做?
答案 0 :(得分:6)
这是一个使用服务器端路由的简单示例:
Router.map(function() {
this.route('jsonExample', {
where: 'server',
path: '/json',
action: function() {
var obj = {cat: 'meow', dog: 'woof'};
var headers = {'Content-type': 'application/json'};
this.response.writeHead(200, headers);
this.response.end(JSON.stringify(obj));
}
});
});
如果您将其添加到您的应用并转到localhost:3000/json
,您应该会看到正确的结果。