gpt4 book ai didi

node.js - 在本地运行 Cloud Functions 会出现错误 "functions.config() is not available"

转载 作者:IT老高 更新时间:2023-10-28 21:58:54 25 4
gpt4 key购买 nike

Cloud Functions for Firebase 刚刚发布,我正在按照说明进行全新安装。 Here is the "Get Started" page.

我已经安装了“npm install -g firebase-tools”并且我的所有文件都在我的项目中。我正在使用 WebStorm 2016.3 和 Node.JS v6.10.0。

我还安装并设置了 firebase login 和 firebase init 功能。我的设置。 Here is my set up.

我的 package.json

 {
"name": "functions",
"description": "Cloud Functions for Firebase",
"dependencies": {
"firebase-admin": "^4.1.2",
"firebase-functions": "^0.5"
},
"private": true
}

前两行代码有效。

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

但是当我尝试运行这条线时......

  admin.initializeApp(functions.config().firebase);

我收到此错误。

 Error: functions.config() is not available. Please use the latest version of the Firebase CLI to deploy this function.
at init (/Users/.../functions/node_modules/firebase-functions/lib/config.js:46:19)
at Object.config (/Users/.../functions/node_modules/firebase-functions/lib/config.js:29:9)
at Object.<anonymous> (/Users/.../functions/index.js:11:31)
at Module._compile (module.js:570:32)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.runMain (module.js:604:10)
at run (bootstrap_node.js:394:7)

我在这里错过了什么?

最佳答案

如果像我一样,您在尝试在本地运行函数时遇到此错误,那是因为 functions.config() 仅在 Cloud Functions 运行时可用。

如果您在部署之前尝试测试您的功能,这里是有关如何测试的文档的链接:run functions locally .具体来说,这部分很有趣:

If you're using custom functions configuration variables, run the following command in the functions directory of your project before running firebase serve.

firebase functions:config:get > .runtimeconfig.json

However, if you're using Windows PowerShell, replace the above command with:

firebase functions:config:get | ac .runtimeconfig.json

关于node.js - 在本地运行 Cloud Functions 会出现错误 "functions.config() is not available",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42841453/

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