我的Mongo数据库具有
{ product_name:“ abc-123-hello”, product_type:“ helloworld” }
{ product_name:“ abc-111-hello”, product_type:“ helloworld” }
{ product_name:“ abc-222-hello”, product_type:“ helloworld” }
我的NodeJS代码是
router.get("/products/:product_name"(req,res,next) => {
var result = database.collection.find(product_name:req.params.product_name){
result.forEach(function(x){
res.status(200).json(x);
}
}
}
问题: 如何搭配: mongodb中的“ abc222hello” ==“ abc-222-hello”找到吗?