dreamfactory:使用多个过滤器查询记录

时间:2016-07-29 09:44:12

标签: android sqlite api dreamfactory

我正在开发一个电子商务Android应用程序。我正在尝试使用基于多个过滤器的android的dreamfactory API来获取记录。

使用名为GetProductsBySubCatIdTask的AsyncTask

 public class GetProductsBySubCatIdTask extends BaseAsyncRequest {

 Context context;
 public Products productsRec;
 int subCatId;
 String sort_str,fltr_str;

 public GetProductsBySubCatIdTask(Context context, int subCataId, String   sort_str, String fltr_str){
     this.context    =   context;
     this.subCatId   =   subCataId;
     this.sort_str   =   sort_str;
     this.fltr_str   =   fltr_str;
 }

 @Override
 protected void doSetup() throws ApiException, JSONException {
     callerName = "getProductsBySubCatId";

     serviceName = AppConstants.DB_SVC;
     endPoint = "product";
     verb = "GET";

     // filter to only select the contacts in this group

     if(!TextUtils.isEmpty(fltr_str)){
          fltr_str =  "&&"  + fltr_str;
      }
      else{
          fltr_str = "";
      }

      queryParams = new HashMap<>();
      queryParams.put("filter", "sub_category_id=" + subCatId + fltr_str);
      queryParams.put("order", sort_str);


      applicationApiKey = AppConstants.API_KEY;
      sessionToken = PrefUtil.getString(context, AppConstants.SESSION_TOKEN);

  }

   @Override
   protected void processResponse(String response) throws ApiException, JSONException {
     //Log.d("Tang Ho"," >>>>> " + response);
     productsRec =
             (Products) ApiInvoker.deserialize(response, "", Products.class);
   }

  @Override
  protected void onCompletion(boolean success) {
     if(success && productsRec != null && productsRec.products.size() > 0){
         Log.d("Tang Ho"," >>>>> Success");
     }
  }
}

我使用了在类外部构造并作为参数提供的过滤器,可能的过滤器是

unit_offerprice < unit_mrp<br>
unit_offerprice = unit_mrp<br>
(unit_offerprice > 200) && (unit_offerprice > 500)<br>
unit_offerprice > 100<br>
unit_offerprice < 600<br>

以上所有过滤器均可单独使用,也可以2或3组合使用

unit_offerprice < unit_mrp && unit_offerprice > 100

转义字符串中的符号后,如

unit_offerprice%3Cunit_mrp

无法获得理想的结果, 在文档中搜索但发现确切的事情。

可能的解决办法是什么?

2 个答案:

答案 0 :(得分:1)

如果您的过滤器有多个条件,则每个条件都需要放在括号内()。此外,使用AND连接过滤器的正确语法是AND,而不是&amp;&amp;。 支持的逻辑运算符是AND,OR和NOT。

在你的例子中,这个:

unit_offerprice < unit_mrp && unit_offerprice > 100

应该是这样的:

(unit_offerprice < unit_mrp) AND (unit_offerprice > 100)

请参阅文档的以下部分: http://wiki.dreamfactory.com/DreamFactory/Features/Database/Records#Filtering_Records http://wiki.dreamfactory.com/DreamFactory/Tutorials/Querying_records_with_logical_filters

DreamFactory还提供了许多官方支持途径,包括用户论坛。 http://www.dreamfactory.com/support

答案 1 :(得分:0)

通过为多个过滤器添加括号来解决问题。

但是使用特殊字符(例如&lt;,&gt;)和 这需要

编码为%3C(对于&lt;)和%3E(对于&gt;), 用于过滤的字符串是:

&#34;(unit_offerprice→100)AND(unit_offerprice&LT; 500)&#34;

编码形式是:

&#34;(unit_offerprice%3E100)AND(unit_offerprice%3C500)&#34;