我在使用 firestore 查询 "whereEqualTo" 时遇到问题。我正在尝试从名为“参与者”的集合中获取图像,但是当文档不存在时,它应该使用 else 语句并移至更新文档的下一个活动。但是,当从 onComplete 侦听器 ie Task 中的集合中查询文档时,文档不会退出,但代码正在运行到 if(task.isSuccessful){} 中并且不使用 else 语句。我的代码:谁能帮我这个谢谢
//***********BattlePost1**************
mFirestore.collection("OpenBattle")
.document(battlesPost_creator)
.collection("BattlePost")
.document(battlePost_id)
.collection("Participants")
.document(UserId)
.collection("Posts").whereEqualTo("battle_post_count", 1)
.get().addOnCompleteListener(new OnCompleteListener<QuerySnapshot>() {
@Override
public void onComplete(@NonNull Task<QuerySnapshot> task) {
if (task.isSuccessful()){
for (QueryDocumentSnapshot document : task.getResult()){
Glide.with(mContext).load(document.get("imageuri")).into(battle_creator_postImage1);
battle_points1.setText(String.valueOf(document.get("numberOfLikesPoints")) + "Points");
}
}else {
Log.d(TAG, "onComplete: Error getting the first document");
}
}
});
//**************BattlePost2***************
mFirestore.collection("OpenBattle")
.document(battlesPost_creator)
.collection("BattlePost")
.document(battlePost_id)
.collection("Participants")
.document(UserId)
.collection("Posts")
.whereEqualTo("battle_post_count", 2)
.get().addOnCompleteListener(new OnCompleteListener<QuerySnapshot>() {
@Override
public void onComplete(@NonNull Task<QuerySnapshot> task) {
if (task.isSuccessful()) {
for (QueryDocumentSnapshot document : task.getResult()) {
Log.d(TAG, document.getId() + " => " + document.getData());
Glide.with(mContext).load(document.get("imageuri")).into(battle_creator_postImage2);
battle_points2.setText(String.valueOf(document.get("numberOfLikesPoints")) + "Points");
}
} else {
Log.d(TAG, "Error getting documents: ", task.getException());
//Can create a 2nd post
Glide.with(mContext).load(R.drawable.ic_add_circle_black_24dp).into(battle_creator_postImage2);
battle_creator_postImage2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(mContext, TemplateActivity.class);
intent.putExtra(getString(R.string.battle_add_post),battlePost_id);
intent.putExtra("BattlePost_Pub", battlesPost_creator);
intent.putExtra("Battle_contest", 2);
intent.putExtra("Battle_tittle", battle_tittle);
intent.putExtra("Battle_timeEnd", battle_timeEnd);
startActivity(intent);
}
});
}
}
});