我是firebase的新手,但是当我部署我的函数并执行onWrite()
方法时,这就是我得到的错误:
ReferenceError:未定义firebase 在exports.sendJobNotification.functions.database.ref.onWrite.event (/user_code/index.js:11:3) at /user_code/node_modules/firebase-functions/lib/cloud-functions.js:35:20 at process._tickDomainCallback(internal / process / next_tick.js:135:7)
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);
exports.sendPaymentNotification = functions.database.ref('payments/{paymentID}').onWrite(event => {
if (event.data.previous.exists()) {
return;
}
firebase.database().ref('payments').child(event.params.paymentID).once('value').then(function(snap){
var jobData = snap.val();
console.log(jobData)
});
});
答案 0 :(得分:1)
对于任何使用谷歌搜索的人。您应该使用“ admin”而不是“ firebase”。
答案 1 :(得分:0)
添加:
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);
根据需要在函数js文件的开头,并确保在初始化连接时使用admin
代替firebase
。
例如:
使用:
admin.firestore().collection()
代替:
firebase.firestore().collection()