如何获取数据快照,然后在火力基础云函数 http 请求中更新数据库



我正在尝试在云函数的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

如何获取数据库的快照并再次写入?

这些错误消息非常有用 Ganesh,请阅读它们两个...

18:70 warning Unexpected function expression prefer-arrow-callback

是一个警告,说你应该使用 ES6 箭头函数语法,而不是带有"函数"一词的老式语法:

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;
    })

相关内容

  • 没有找到相关文章

最新更新