我想在firestore
中链接查询。在获取另一个收藏夹中的其他信息之前,我需要一些有关一个收藏夹的信息。
我已经尝试使用Tasks.whenall()
...,但是效率不高。
我也尝试使用callBack
。
这是我的第一个功能:
public static void getAllFavoris(){
String uid = FirebaseAuth.getInstance().getCurrentUser().getUid();
FirebaseFirestore.getInstance().collection("product").document("favoris").collection(uid).get()
.addOnCompleteListener(new OnCompleteListener<QuerySnapshot>() {
@Override
public void onComplete(@NonNull Task<QuerySnapshot> task) {
if (task.isSuccessful()) {//task is succesful
Log.e("TAG","task succes for fav ");
for (QueryDocumentSnapshot document : task.getResult()){//never enter in this loop
Log.e("TAG","Doc "+document);
Log.e("TAG", "Succes for get all favoris");
Log.e("TAG","data for favoris ::: "+document.getId());
MainActivity.favorisList.add(document.getId());
}
}
else {
Log.d("TAG", "Error getting documents: ", task.getException());
}
//call without data retrieve
Log.e("TAG","favoris ::: "+showListContentS(MainActivity.favorisList));
getProductByTagFound();
}
})
.addOnFailureListener(new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.e("TAG","error get All favoris"+e);
}
});
}
这是我需要的第二个查询:
public static void getProductByTagFound(){
for(int i=0;i<MainActivity.allTags.size();i++){ //allTags is not empty and i need to finish this loop
String tagId = MainActivity.allTags.get(i).toString();
FirebaseFirestore.getInstance().collection("product").document("allProduct").collection("productByTag").document(tagId).get()
.addOnCompleteListener(new OnCompleteListener<DocumentSnapshot>() {
@Override
public void onComplete(@NonNull Task<DocumentSnapshot> task) {
if (task.isSuccessful()){
Log.e("TAG", "Succes for get productByTag");
Product pdt = task.getResult().toObject(Product.class);
MainActivity.productByTag.add(pdt);
}
}
});
}
//this must be call after the loop is finish but call in the same time.
Log.e("TAG","Get product BY Tag"+showListContentP(MainActivity.productByTag));
createFinalList();
}
我需要在循环结束后调用createFinalList()
,并进入循环以获取数据并在之后调用getProductByTag()
。
答案 0 :(得分:1)
如果要在第一个查询完成后立即执行新查询,则需要等到第一个查询完成。要解决这个问题,您需要使用嵌套查询。换句话说,您需要将第二个查询移到onComplete()
方法内的第一个回调中。这样,仅当第一个查询完成时才执行第二个查询。