我正在試圖在mongodb中查找數據。我有這樣的如何查找特定值是否在密鑰中
{"name":"xxxx","product":"laptop,phone,mobile"}
{"name":"yyyy","product":"phone,iphone,pendrive"}
我試圖找到「手機」的數據是在產品的關鍵,所以我試圖在終端
db.collection.find({"product": /phone/});
此命令時,它工作正常,但它不是在工作我的應用程序。因此,我已經在我的應用程序中動態地嘗試過。
var key=phone;
var name="/"+key+"/";
collection.find({"product":name}).toArray(function(err,result)
{
console.log(result.length);
});
但我總是隻有0長度,所以如何動態地使用它?
這是工作now..thanks ... – silvesterprabu 2013-02-12 11:13:24
我要出去放什麼時候我會給像p和像電話相關的字符串相關的字符。但我只想要數據時,我會給像電話一樣確切的字符串數據。怎麼找 ? – silvesterprabu 2013-02-13 08:01:33