gpt4 book ai didi

javascript - 无法部署 firebase 功能

转载 作者:行者123 更新时间:2023-11-29 23:44:24 25 4
gpt4 key购买 nike

Node.js 命令提示只是忽略了这个函数,而其他函数正在部署,我也没有收到任何错误。

var database = admin.database();
var postsRef = database.ref("/posts");

postsRef.on('child_added', addOrUpdateIndexRecord);

function addOrUpdateIndexRecord(dataSnapshot) {
// Get Firebase object
var firebaseObject = dataSnapshot.val();
// Specify Algolia's objectID using the Firebase object key
firebaseObject.objectID = dataSnapshot.key;
// Add or update object
index.saveObject(firebaseObject, function(err, content) {
if (err) {
throw err;
}
console.log('Firebase object indexed in Algolia', firebaseObject.objectID);
});
}

最佳答案

如果是数据库触发器函数,那么你使用的语法不正确。尝试这样做:

exports.updateposts = functions.database.ref("posts/")
.onWrite(event => {

//Do whatever you want to do with trigger

});

关于javascript - 无法部署 firebase 功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44522009/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com