我试图在我的 mongodb 中找到一个特定的对象,目前我在玉模板引擎中遍历整个 id 并逐个字符串匹配字符串,但肯定有一种更有效的方法在 mongo 中搜索对象
app.put('/tasks/:id', function(req, res){
Task.findById(req.params.id, function (err, doc){
doc.updated_at = new Date();
doc.task = req.body.task.task;
doc.save(function(err) {
if (!err){
res.redirect('/tasks');
}
else {
// error handling
}
});
});
});
或者,我可以
db.TASK.find(
{ Task: 'blah blah.....' },
)
在命令行中
但我不知道如何让服务器端动态响应不同的任务,即“等等等等”应该是动态的,我不知道如何将其合并到 node.js 中
任何提示将不胜感激