我正在对插入 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 中我可以回显。