firebase云功能函数循环执行

时间:2017-08-03 05:38:19

标签: node.js firebase firebase-realtime-database google-cloud-functions

我想制作现有数据的简历,但Firebase云功能会循环,以便我所做的总和无效。我的问题有解决方案吗? 谢谢

这在我的屏幕拍摄中

数据库构建 image

日志 image

const functions = require('firebase-functions');
const admin = require("firebase-admin");
admin.initializeApp(functions.config().firebase);
var db = admin.database();
exports.makePurchaseSummaryAdd = functions.database.ref('/invoice_data/{pushIdInvoice}/item/{pushIdItem}')
    .onCreate(event => {
        var name = event.data.child('itemName').val();
        var quantity = event.data.child('quantity').val();

        var ref = db.ref('/invoice_data/' + event.params.pushIdInvoice + '/idUser');
        ref.on("value", function(snapshot) {
            var refUser = db.ref('/user_data/' + snapshot.val() + '/purchaseSummary/' + name.toUpperCase());
            refUser.on("value", function(snapshotUser) {
                if (snapshotUser.exists()){
                    console.log('Ada Data');
                    var count = snapshotUser.val();
                    var newCount = quantity + count;
                    refUser.set(newCount);
                    console.log('create', count, newCount, name.toUpperCase());
                }
                else {
                    console.log('Tidak Ada Data');
                }
            }, function (errorObject) {
              console.log("The read failed: " + errorObject.code);
            });
        }, function (errorObject) {
          console.log("The read failed: " + errorObject.code);
        });
        return true;
    });

1 个答案:

答案 0 :(得分:0)

您正在使用on()方法附加数据库引用侦听器。这使得听众无法接受:

  

将为初始数据触发您的回调,并再次触发   每当数据发生变化时

您应该使用once()

  

然后侦听指定事件类型的一个事件   停止聆听

您的代码正在循环,因为您附加了一个监听器refUser.on(...),然后正在更改回调中该位置的值:refUser.set(newCount);