0
我想通過一個屬性,使用此代碼搜索對象:搜索對象的火力地堡
ref.orderByChild("aFieldNameOnTheFirebaseCollection").equalTo(mySearchArgument).limitToFirst(1).on("child_added", function(snapshot) {
console.log("Yes the object with the key exists !");
var thisVerificationVarisSetToTrueIndicatingThatTheObjectExists = true ;
});
如果一個或多個對象的集合中沒有找到這一工程確定。但是,我需要知道是否沒有對象存在。在驗證之前,我可以將驗證變量設置爲false,但驗證過程是異步的,我需要等待完成。我使用承諾?
完美。非常感謝你 ! – GCoe