提问人:expressnoob 提问时间:1/15/2011 更新时间:1/15/2011 访问量:1121
在mongo中成功插入后节点.js响应?
node.js respond after success insert in mongo?
问:
我正在对插入 mongodb 集合的 node.js 路由执行 ajax $.post
collection.insert(req.body.content, function () {
return req.body.content
});
如何返回某些内容,以便我可以对客户端回调中的响应执行某些操作?
例如,在 php 中,我可以回声。
答:
3赞
Paul Spencer
1/15/2011
#1
您应该有权访问 Request 对象(在示例中为 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');
评论