mongodb コレクションに挿入する node.js ルートに ajax $.post を実行しています
collection.insert(req.body.content, function () {
return req.body.content
});
クライアント コールバックの応答で何かを実行できるように、何かを返すにはどうすればよいですか?
たとえば、php ではエコーできます。
mongodb コレクションに挿入する node.js ルートに ajax $.post を実行しています
collection.insert(req.body.content, function () {
return req.body.content
});
クライアント コールバックの応答で何かを実行できるように、何かを返すにはどうすればよいですか?
たとえば、php ではエコーできます。
リクエスト オブジェクト (この例では 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');