如何在Mongodb中查找和匹配“连字符”

时间:2018-07-05 02:19:59

标签: node.js regex mongodb nosql match

我的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”找到吗?

0 个答案:

没有答案