我曾希望那样简单,但是尝试运行查询时遇到以下异常:com.parse.ParseException:相等需要一个值而不是[value0,value1,...]

如何获得具有此条件的数据对象列表?

query.whereEqualTo("objectId", ParseUser.getCurrentUser().getList("isfollowing"));
query.orderByDescending("createdAt");
query.findInBackground(new FindCallback<ParseObject>() {

最佳答案

代替whereEqualTo,使用whereContainedIn

关于android - Android的WhereEqualTo错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34029213/

10-12 03:41