1
我該怎麼辦財產以後這樣的:天青Query.where()用或
var userId="patrick";
var finded="bob";
query.where({
userhostid: userId || finded,
});
我只需要添加查詢項,其中userhostid quals到的用戶ID或瑤池 謝謝!
我該怎麼辦財產以後這樣的:天青Query.where()用或
var userId="patrick";
var finded="bob";
query.where({
userhostid: userId || finded,
});
我只需要添加查詢項,其中userhostid quals到的用戶ID或瑤池 謝謝!
您可以使用指定條件的作用方式:
var userId="patrick";
var finded="bob";
query.where(function(value1, value2) {
return this.userhostid == value1 || this.userhostid == value2;
}, userId, finded);
的博客文章在http://blogs.msdn.com/b/carlosfigueira/archive/2012/09/21/playing-with-the-query-object-in-read-operations-on-azure-mobile-services.aspx對在查詢複雜過濾的詳細信息。
男人你是我的主人!爲您提供的啤酒升級! – Marlen