Unable to deploy firebase function

久未见 提交于 2019-12-08 01:48:15

问题


Node.js command prompt is simply ignoring this function, while the other functions are getting deployed, I am not getting any error either.

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

回答1:


If it's a database trigger function, then the syntax you are using is not correct. Try doing this way:

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

  //Do whatever you want to do with trigger

});


来源:https://stackoverflow.com/questions/44522009/unable-to-deploy-firebase-function

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!