我在将数据从 ajax 客户端发送到 nodejs 并将该数据存储在 mongodb 的集合中时遇到问题。这是我的客户代码:
testdata = {'test1':'test1', 'test2':'test2'}
for(i=0;i<2;i++){ // for testing purposes
$(".btn").click(function(){
$.ajax({
url: 'http://localhost:8000/1',
type: 'post',
dataType: 'json',
data: testdata ,
success: function(){
console.log(i);
}
});
});
}
我的 node.js 服务器 post 处理程序带有 express:
app.post('/1', function(req, res){
db.collection('test', function(err, collection){
var data = req.body;
collection.insert(data, function (err, result) {
if(!err){
console.log(result);
}else{
res.end();
}
});
});
});
正文解析器中间件已打开,mongo 当然已打开,但我的测试集合没有收到任何数据。我有一种感觉,我在这里遗漏了一些非常明显的东西。感谢您的帮助,非常感谢。