部署Firebase功能时出错

时间:2018-07-07 02:06:31

标签: node.js firebase google-cloud-functions algolia firebase-cli

我正在尝试部署Firebase云功能,每次在事件节点下添加新事件时,该功能都会将某些内容推送到我的阿尔及利亚搜索引擎。我遵循了此处的教程,该教程似乎在很大程度上详细说明了如何做事。

https://www.youtube.com/watch?v=Njtbo3YUdH4

但是,当我运行项目时,出现最奇怪的错误 解析函数触发器时发生错误。

TypeError: Cannot read property 'config' of undefined

过去我在尝试部署功能时从未见过此错误。我不确定是否有所更改,但到目前为止,我真的找不到在Firebase文档或stackoverflow上修复此错误的地方。

除了我正在运行节点版本v8.11.3之外,我还可以肯定我的算法已正确配置,原因是运行

$ firebase functions:config:get

我明白了

{
  "algolia": {
    "appid": "xxxxxxx",
    "adminkey": "xxxxxxxxxx"
  }
}

唯一的可能是我的代码。如果有人可以帮助我修复,我将在下面进行介绍,我将不胜感激。

//similar to import functions in swift
const functions = require('firebase-functions');
// The Firebase Admin SDK to access the Firebase Realtime Database.
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);

// // Create and Deploy Your First Cloud Functions
// // https://firebase.google.com/docs/functions/write-firebase-functions
//
//exports acts as a global variable that you can init other properties on
//on
// exports.helloWorld = functions.https.onRequest((request, response) => {
//  response.send("Hello from Firebase!");
// });
const algoliasearch = require('algoliasearch');
const algolia = algoliasearch(functions.config().algolia.appid,functions.algolia.config().adminKey)

exports.updateIndex = functions.database.ref('/events/{eventKey}').onWrite(event =>{
    const index = algolia.initIndex('events');
    const eventKey = event.params.eventKey
    const data = event.data.val();

    if(!data){
        return index.deleteObject(eventKey,(err) =>{
            if (err) throw err
            console.log('Event deleted from algolia index',eventKey)
        })
    }

    data['objectID'] = eventKey
    return index.saveObject(data,(err,content) =>{
        if (err) throw err
        console.log('Event updated in algolia index',data.objectID)
    })
});

1 个答案:

答案 0 :(得分:0)

看这行(我添加了回车符):

const algolia = algoliasearch(functions.config().algolia.appid,
    functions.algolia.config().adminKey)

这看起来是正确的:

functions.config().algolia.appid

这不是:

functions.algolia.config().adminKey

您似乎想这样说:

functions.config().algolia.adminKey