我试图在云功能的HTTPS请求中获取firebase实时数据库的数据快照,然后将来自查询的值添加到快照值,然后再次将其设置为数据库。
这是我的代码。
exports.addCredits = functions.https.onRequest((req, res)=>{
console.log(req.query.UserID);
var credits = req.query.amount
var userId = req.query.UserID
return admin.database().ref('/Users/' + userId).once('value').then(function(snapshot) {
var userPoints = snapshot.val().Credit
const databaseRef = admin.database().ref("Users").child(userId+"/Credit")
res.send("Your Credits "+ credits + " And User ID " + userId + " user points" + userPoints);
var total = credits + userPoints
databaseRef.set(total);
})
})
在部署代码时终端出现错误。
18:70 warning Unexpected function expression prefer-arrow-callback
18:70 error Each then() should return a value or throw promise/always-return
如何获取数据库快照并再次写入?
答案 0 :(得分:2)
这些错误消息对Ganesh很有帮助,请阅读它们两者...
18:70 warning Unexpected function expression prefer-arrow-callback
是警告,表示您应该使用ES6箭头函数语法而不是带有单词“ function ”的老式语法:
return admin.database().ref('/Users/' + userId).once('value').then( snapshot => {
然后是实际的错误...
18:70 error Each then() should return a value or throw promise/always-return
告诉您,每次使用.then()
时,内部函数都需要返回一些内容。
return admin.database().ref('/Users/' + userId).once('value').then( snapshot => {
var userPoints = snapshot.val().Credit
const databaseRef = admin.database().ref("Users").child(userId+"/Credit")
res.send("Your Credits "+ credits + " And User ID " + userId + " user points" + userPoints);
var total = credits + userPoints
databaseRef.set(total);
// You are inside of a .then() block here...
// you HAVE return SOMETHING...
// if you want, you could do: return databaseRef.set(total);
// or even just: return true;
})