AVQuery query = new AVQuery<>("Student");
query.whereEqualTo("lastName", "Smith");
query.findInBackground().subscribe(new Observer>() {
public void onSubscribe(Disposable disposable) {}
public void onNext(List students) {
// students 是包含满足条件的 Student 对象的数组
}
public void onError(Throwable throwable) {}
public void onComplete() {}
});
-
创建时间
21年1月16日
-
最后回复
21年1月18日
-
1
回复
-
838
浏览
-
2
用户