我有一个Firebase Cloud Function,该函数在我的应用程序中使用JavaScript调用。 调用该函数时,它将从用户ID中获取用户数据,然后从实时数据库中获取一条记录以检查是否匹配。
此功能有效,但返回“ null”并提前完成,而不是在检测到匹配时返回成功或错误消息。
如何使返回文字成为比赛的成功或错误,并且只有在决定了这场比赛之后才能完成?
exports.matchNumber = functions.https.onCall((data, context) => {
// ID String passed from the client.
const ID = data.ID;
const uid = context.auth.uid;
//Get user data
admin.auth().getUser(uid)
.then(function(userRecord) {
// Get a database reference to our posts
var db = admin.database();
var ref = db.ref("path/to/data/" + ID);
return ref.on("value", function(snapshot) {
//Fetch current phone number
var phoneORStr = (snapshot.val() && snapshot.val().phone) || "";
//Fetch the current auth user phone number
var userAuthPhoneNumber = userRecord.toJSON().phoneNumber;
//Check if they match
if (userAuthPhoneNumber === phoneORStr) {
console.log("Phone numbers match");
var updateRef = db.ref("path/to/data/" + ID);
updateRef.update({
"userID": uid
});
return {text: "Success"};
} else {
console.log("Phone numbers DO NOT match");
return {text: "Phone number does not match the one on record."};
}
}, function (errorObject) {
console.log("The read failed: " + errorObject.code);
return {text: "Error fetching current data."};
});
})
.catch(function(error) {
console.log('Error fetching user data:', error);
return {text: "Error fetching data for authenticated user."};
});
});
谢谢
答案 0 :(得分:1)
Firebase .third-section > form {
text-align: center;
}
方法不会返回承诺,因此您拥有的ref.on()
语句无济于事。
您正在寻找return
,它返回一个承诺,因此会冒充您其中的ref.once()
语句:
return
正如道格指出的那样,您还需要从顶层退还诺言。所以:
return ref.once("value").then(function(snapshot) {
...