我有两个班级“优惠”和“商店”。 Offer类有一个名为“storeId”的指针字段,它指向“Stores”类。我需要查询特定类别的优惠,属于我当前位置20公里范围内的商店。然后,返回的商店对象应显示在列表视图中。
这是我的ParseQueryAdapter子类的onCreate()方法中的代码。
ParseQuery offersQuery = new ParseQuery("Offers");
offersQuery.whereEqualTo("category", category);
ParseQuery storesQuery = new ParseQuery("Stores");
storesQuery.whereWithinKilometers("location",myLoc,20);
storesQuery.whereMatchedKeyInQuery("objectId", "storeId", offersQuery);
return storesQuery
storesQuery返回一个空列表。
我错过了什么?另外,请忽略上面代码中的错误字符
由于