Firebase ReferenceError:未定义PostData

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Firebase ReferenceError:未定义PostData相关的知识,希望对你有一定的参考价值。

我正在尝试创建弹性搜索云Firebase功能,但在firebase功能中有一些错误。该错误引用了index.js代码,但我不知道哪里出错了。我在哪里可以在index.js代码中出错?

const functions = require('firebase-functions');

const request = require('request-promise')

exports.indexPostsToElastic = functions.database.ref('/posts/{post_id}')
        .onWrite((change,context) =>{
        let postData = change.after.val();
        let post_id = context.params.post_id;

        console.log('Indexing post',PostData);

        let elasticSearchConfig = functions.config().elasticSearch;
        let elasticSearchUrl = elasticSearchConfig.Url + 'posts/' + post_id;
        let elasticSearchMethod = postData ? 'POST' : 'DELETE';

        let elasticSearchRequest = {
            method:elasticSearchMethod,
                url: elasticSearchUrl,
                auth:{
                    username : elasticSearchConfig.username,
                    password : elasticSearchConfig.password,
                },
                body: postData,
                json : true
              };
              return request(elasticSearchRequest).then(response => {
                  return console.log("ElasticSearch response", response);
              })
            });

以下是错误在我的Firebase中的读取方式

ReferenceError: PostData is not defined
    at exports.indexPostsToElastic.functions.database.ref.onWrite (/user_code/index.js:10:31)
    at cloudFunctionNewSignature (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:114:23)
    at cloudFunction (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:144:20)
    at /var/tmp/worker/worker.js:827:24
    at process._tickDomainCallback (internal/process/next_tick.js:135:7)

我希望函数执行完成状态成功,但最终会出错。

答案

改变这个:

console.log('Indexing post', PostData);

进入:

console.log('Indexing post', postData);

以上是关于Firebase ReferenceError:未定义PostData的主要内容,如果未能解决你的问题,请参考以下文章

Firebase 函数 - ReferenceError:未定义事件

ReferenceError: self 在设置 Firebase 时未定义

“未捕获的 ReferenceError:未定义 firebase”。如何在 Chrome 中定义 firebase 并超越黑屏?

颤振网页错误。未捕获的 ReferenceError:未定义 firebase

Firebase ReferenceError:未定义PostData

ReferenceError:进程未在 firebase-messaging-sw.js 中定义