因此,可以尝试获取以下JSON对象:

$ curl -i -X GET http://echo.jsontest.com/key/value/anotherKey/anotherValue
HTTP/1.1 200 OK
Access-Control-Allow-Origin: *
Content-Type: application/json; charset=ISO-8859-1
Date: Wed, 30 Oct 2013 22:19:10 GMT
Server: Google Frontend
Cache-Control: private
Alternate-Protocol: 80:quic,80:quic
Transfer-Encoding: chunked

{
   "anotherKey": "anotherValue",
   "key": "value"
}
$

是否有一种方法可以使用node或express在服务器的响应中生成完全相同的正文?显然,我们可以设置报头并指出响应的内容类型将是“application/json”,但是还有不同的方法来编写/发送对象。我所看到的最常用的是使用表单的命令:

response.write(JSON.stringify(anObject));

然而,这有两点,人们可以认为它们是“问题”:

我们正在发送一个字符串。 而且,最后没有新的行字符。

另一个想法是使用命令:

response.send(anObject);

这似乎是在发送一个基于curl输出的JSON对象,类似于上面的第一个示例。但是,当在终端上再次使用curl时,正文末尾没有新的行字符。那么,如何用node或node/express在结尾追加一个新行字符来写出这样的东西呢?


当前回答

如果你正在使用Express,你可以使用这个:

res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({key:"value"}));

或者只是这样

res.json({key:"value"});

其他回答

因为Express.js 3x响应对象有一个json()方法,它为你正确设置所有的头,并以json格式返回响应。

例子:

res.json({"foo": "bar"});

您可以使用管道和许多处理器中的一个来美化它。你的应用应该总是响应尽可能小的负载。

$ curl -i -X GET http://echo.jsontest.com/key/value/anotherKey/anotherValue | underscore print

https://github.com/ddopson/underscore-cli

以下是解决方案:

//Here, JSON object is doc  
const M={"First Name":doc.First_Name,
          "Last Name":doc.Last_Name,
          "Doctor's Email":doc.Email,
          "Doctors Picture Link":doc.Image};
   res.write(JSON.stringify(M,null,10)+"\n");
   res.end();

其他渲染对象的方法

console.log(doc);
res.json(doc);
//Here,M is referred from the above code it is contains doc Object
res.send(M);

我是如何获得对象使用猫鼬:

//Here, Handles contains my MongoDB Schema.
const NN=Handles.findOne().lean().exec(function(err, doc) {
console.log(doc);
});

对于问题的头部分,我要喊出res。在这里输入:

res.type('json')

等于

res.setHeader('Content-Type', 'application/json')

来源:express docs:

将Content-Type HTTP报头设置为MIME类型,由MIME .lookup()为指定类型确定。如果type包含“/”字符,则它将Content-Type设置为type。

如果你试图发送一个json文件,你可以使用流

var fs = require('fs');

var usersFilePath = path.join(__dirname, 'users.min.json');

apiRouter.get('/users', function(req, res){
    var readable = fs.createReadStream(usersFilePath);
    readable.pipe(res);
});