2014-02-05 41 views
0

我正在使用Titanium appcelerator的android應用程序中工作。 現在我試了ACS評論 ..我得到整個數據庫結果,我需要按ID篩選。對於我試圖把條件..但它不工作..ACS審查條件失敗

的json

{ 
    "id": "52ea3eba08a3e5704b330c2a2a", 
    "rating": 3, 
    "created_at": "2014-01-30T11:59:54+0000", 
    "updated_at": "2014-01-30T11:59:54+0000", 
    "user": { 
     "id": "52e5f3881356b440b4b09c805", 
     "created_at": "2014-01-27T05:50:00+0000", 
     "updated_at": "2014-01-29T04:29:49+0000", 
     "external_accounts": [ 

     ], 
     "confirmed_at": "2014-01-27T05:50:00+0000", 
     "username": "Gk", 
     "role": "j", 
     "admin": "false", 
     "custom_fields": { 
     "phone": "91959454651", 
     "usertype": "0", 
     "status": "1", 
     "ios_deviceid": "", 
     "country_code": "IN", 
     "verify_code": "4574", 
     "verified": "1", 
     "contact_sms": "1", 
     "contact_message": "1", 
     "contact_email": "1", 
     "contact_phone": "0", 
     "android_gcmid": "APA91bE0mcScNlXbCENZ2D_9jylgwdwOJ6vYTqnI_Kzqx2lqLWblnn6mT4PJ6iZRNxUGA66Ke7RJ0CKC44DL3mturNs_w3QT7KhTVIWbQE2tJgBHU7gpzB2GG4sFGXL6LiayJ5zEn_AGhxBlw" 
     } 
    }, 
    "reviewed_object": { 
     "type": "Post", 
     "id": "52e7800313556440b4b0aa134" 
    }, 
    "custom_fields": { 
    } 
    }, 
    { 
    "id": "52ea3e9d4430d0b1e0c1c16", 
    "rating": 3, 
    "created_at": "2014-01-30T11:59:25+0000", 
    "updated_at": "2014-01-30T11:59:25+0000", 
    "user": { 
     "id": "52e8fe464643d0b130b85f5", 
     "first_name": "Ganesh", 
     "last_name": "test", 
     "created_at": "2014-01-29T13:12:38+0000", 
     "updated_at": "2014-01-29T13:12:38+0000", 
     "external_accounts": [ 

     ], 
     "confirmed_at": "2014-01-29T13:12:38+0000", 
     "username": "john", 
     "role": "r", 
     "admin": "false" 
    }, 
    "reviewed_object": { 
     "type": "Post", 
     "id": "52e7800343556b4dsfsdfh3434" 
    }, 
    "custom_fields": { 
    } 
    }, 
] 

我想用這個ID來過濾..

"reviewed_object": { 
     "type": "Post", 
     "id": "52e7800343556b4dsfsdfh3434" 
    } 

我應該在WHERE條件下寫什麼..

Cloud.Reviews.query({ 
      page : 1, 
      per_page : 20, 
      where : { 
       rating : { 
        '$gt' : 1.0 
       }, 

      }, 
      order : "-created_at" 

     } 
+0

任何人試圖這一個; – GaneshKumar

回答

1

我添加了一些不where語句..它的工作完美我的帖子ID條件..

我的代碼:

Cloud.Reviews.query({ 
      page :1, 
      per_page : 20, 
      post_id : Your Post id 

     }, function(e) { 
      if (e.success) {