使用 like 运算符的动态值在 mongodb 中失败。
收集中的样本数据:
{ "_id" : 30, "item" : "box", "qty" : 30 }
{ "_id" : 40, "item" : "box1", "qty" : 50 }
db.mycollection.find({"item": /ox1/});
它的工作。
$value = '/ox1/';
db.mycollection.find({"item": /$value/});
但是使用 like 运算符的动态值不起作用。如果有,请提供解决方案。