1

我正在对插入 mongodb 集合的 node.js 路由执行 ajax $.post

collection.insert(req.body.content, function () {
    return req.body.content
});

我如何返回一些东西,以便我可以对客户端回调中的响应做一些事情?

例如在 php 中我可以回显。

4

1 回答 1

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'); 
于 2011-01-15T03:11:43.687 回答