我在节点和表达环境中有REST后端。我的服务是生成以下JSON
[
{ "id": 1, "name": "Action" },
{ "id": 2, "name": "Drama" },
{ "id": 3, "name": "Comedy" },
{ "id": 4, "name": "Romance" }
]
其中ember-data需要采用以下格式的JSON
{
"genres": [
{ "id": 1, "name": "Action" },
{ "id": 2, "name": "Drama" },
{ "id": 3, "name": "Comedy" },
{ "id": 4, "name": "Romance" }
]
}
以下是生成JSON的支持代码
all : function(req, res){
res.header('Access-Control-Allow-Origin', "*");
if(connection){
connection.query('SELECT * FROM generes',
function(err, rows, fields){
if(err) throw err;
res.contentType('application/json');
res.send(JSON.stringify(rows));
res.end();
});
}
}
如何在JSON字符串中添加资源名称?
答案 0 :(得分:1)
你试过吗
res.send(JSON.stringify({'genres': rows})