我正在使用mongodb这样的数据
[
{
"name":"silvester",
"product":"laptop,iphone,mobile,phone"
},
{
"name":"john",
"product":"cycle,bus,phone,laptop"
},
{
"name":"franklin",
"product":"cycle,phone"
}
]
如何找到笔记本电脑是产品密钥。 如果产品密钥看起来像这样
{
"name":"XXX",
"product":"laptop"
}
我可以使用此db.collection.find("product":"laptop");
那么如何找到这个?
另请告诉我使用backbone.js和node.js以及mongodb技术(如www.trello.com)运行的这三个网站名称。 对不起我最糟糕的英语..
答案 0 :(得分:3)
这对我有用
db.collection.find({“product”:/ laptop /})
更新了答案
如果您想使用变量,请尝试以下方法:
var abc = "laptop";
// other stuff
userdetails.find({"product":new RegExp(abc)}).toArray(function(err,result){
if (err) console.log ("error: "+err);
else
{
// if you want the length
console.log(result.length);
// if you actually want to see the results
for (var i = 0; i < result.length; i++)
{
console.log(result[i]);
}
}
});
再次更新
var abc = "laptop";
// other stuff
// note this is case sensitive. if abc = "Laptop", it will not find it
// to make it case insensitive, you'll need to edit the RegExp constructor
// to this: new RegExp("^"+abc+",|, "+abc+"(?!\w)", "i")
userdetails.find({"product":new RegExp("^"+abc+",|, "+abc+"(?!\w)")}).toArray(function(err,result){
if (err) console.log ("error: "+err);
else
{
// if you want the length
console.log(result.length);
// if you actually want to see the results
for (var i = 0; i < result.length; i++)
{
console.log(result[i]);
}
}
});
答案 1 :(得分:0)
正则表达式将完美无缺。对于你来说也有好消息,因为mongodb将在即将发布的版本中发布全文搜索索引
http://docs.mongodb.org/manual/release-notes/2.4/#text-indexes