我正在对一个插入mongodb集合的node.js路由执行ajax $ .post
collection.insert(req.body.content, function () {
return req.body.content
});
如何返回一些东西,以便我可以对客户端回调中的响应做些什么?
例如在php中我可以回应。
答案 0 :(得分:3)
您应该有权访问请求对象(示例中的req)和响应对象。您需要做的就是写入响应对象。
res.writeHead(200, {
'Content-type': 'text/plain' // or whatever content type you want
});
// you can use res.write also, but call end when you are done.
res.end('the text you want to send');