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 に答える