Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在MongoDB中存储了很多用户名,现在我想获取那些 lastname='das' 的数据并将它们显示在显示中 那么我该怎么做呢?
router.route('/find').get(function(req,res){ restuarant.find( {"dish": /fish/},function(err, result){ if(err){ res.send(err) } else{ res.json(result) } })
此路由处理程序将过滤所有其中菜字段包含“鱼”的文档。“鱼”是在前面、中间还是最后都没有关系。