2012-10-19 55 views
2

從JSON文件,我想用冠軍來選擇所有書=「你好」,價格爲50或刊登在2010年之前TaffyDB OR運算符如何?

我無法弄清楚如何OR邏輯運算符。

我已經做了這樣的事情,使用||,但我不認爲這是正確的事情。

代碼:

var query = new TAFFY(json); 

    query({Title:"hello"},{Price:"50"}||{Year:"2010"}).each(function (r) { 

    --- do Something 

    }); 

任何人可以幫助?

回答

2

嘗試此查詢:

query({Title:"hello"},[{Price:"50"},{Year:"2010"}]) 

從taffyDB頁:

// does a match for column that is one of two values 
db([{column:"value"},{column:"value2"}]); 

// Real world example - records with a status of active or pending 
db([{status:"Active"},{status:"Pending"}]);