我在一个名为“English”的集合中有如下所示的 JSON 数据,为此我正在使用 MongoDB 驱动程序设置一个带有 nodejs 应用程序的 REST api。如果我执行以下操作,我将获得浏览器中返回的所有 JSON 数据。
app.get('/sentences', function (req, res){
db.collection('english', function(err, collection) {
collection.find().toArray(function(err, items) {
res.send(items);
});
});
})
但是,当我尝试去/sentences/1
获取一条记录时,应用程序冻结(浏览器选项卡中的半月形变慢)并且没有记录错误。我这样做 findOne 的方式有问题吗?
app.get('/sentences/:id', function(req,rest){
var query = { 'question' : req.params.id };
console.log(query);
console.log('query');
db.collection('english', function(err, collection) {
collection.findOne(query, function(err, item) {
console.log(err);
res.send(item);
});
});
});
JSON数据
[
{
"_id": "526c0e21977a67d6966dc763",
"question": "1",
"uk": "blah blah blah",
"us": "blah blah balh"
},
{
"_id": "526c0e21977a67d6966dc764",
"question": "2",
"uk": "Tom went outside for a fag. I think he smokes too much!",
"us": "Tom went outside for a cigarette. I think he smokes too much!"
},
{
"_id": "526c0e21977a67d6966dc765",
"question": "3",
"uk": "Do you fancy going to the cinema on Friday?",
"us": "How about going to the movies on Friday"
}
]
更新
发生的事情是应用程序最终超时,我No data received
在浏览器中收到一条消息。