3
我是firebase的新成員,我試圖在函數中傳遞$variable
以檢查$variable
是否存在。來自功能的Firebase返回輸出
function ifExistWaybillNo(waybill_no)
{
var databaseRef = firebase.database().ref('masterlist');
databaseRef.orderByChild("waybill_no").equalTo(waybill_no).on('value', function(snapshot){
alert(snapshot.exists()); //Alert true or false
});
}
上述功能工作的罰款,但是當我改變alert(snapshot.exists());
到return snapshot.exists();
它不工作。它只是返回undefined,應該返回true
或false.
我該怎麼做?在此先感謝
我會記住這一點,非常感謝。 –
沒問題,開心編碼。 – theblindprophet