Firebase 函数环境变量无法读取未定义的属性
Posted
技术标签:
【中文标题】Firebase 函数环境变量无法读取未定义的属性【英文标题】:Firebase functions environment variables can not read property of undefined 【发布时间】:2019-01-23 18:36:56 【问题描述】:我有一个与 firebase 连接的 Angular 应用程序。到目前为止,我已经完成了数据库和身份验证工作。但现在我被困在云功能上。 每次有人预订受益人时,我都会尝试使用 nodemailer 发送电子邮件。 函数代码大部分是从firebase github函数示例中复制的 像这样:
'use strict';
const functions = require('firebase-functions');
const nodemailer = require('nodemailer');
// Configure the email transport using the default SMTP transport and a GMail account.
// For other types of transports such as Sendgrid see https://nodemailer.com/transports/
// TODO: Configure the `gmail.email` and `gmail.password` Google Cloud environment variables.
const gmailEmail = functions.config().gmail.email;
const gmailPassword = functions.config().gmail.password;
const mailTransport = nodemailer.createTransport(
service: 'gmail',
auth:
user: gmailEmail,
pass: gmailPassword,
,
);
// Sends an email confirmation when a user changes his mailing list subscription.
exports.sendEmailConfirmation = functions.database.ref('/users/uid').onWrite(async (change) =>
const snapshot = change.after;
const val = snapshot.val();
if (!snapshot.changed('subscribedToMailingList'))
return null;
const mailOptions =
from: '"Spammy Corp." <noreply@firebase.com>',
to: val.email,
;
const subscribed = val.subscribedToMailingList;
// Building Email message.
mailOptions.subject = subscribed ? 'Thanks and Welcome!' : 'Sad to see you go :`(';
mailOptions.text = subscribed ?
'Thanks you for subscribing to our newsletter. You will receive our next weekly newsletter.' :
'I hereby confirm that I will stop sending you the newsletter.';
try
await mailTransport.sendMail(mailOptions);
console.log(`New $subscribed ? '' : 'un'subscription confirmation email sent to:`, val.email);
catch(error)
console.error('There was an error while sending the email:', error);
return null;
);
在此之后我设置我的环境变量是这样的:
firebase functions:config:set gmail.email="myusername@gmail.com" gmail.password="secretpassword"
我在使用 firebase serve 时将我的函数部署到 firebase,但出现错误: -TypeError:无法读取未定义的属性“电子邮件”
当我检查 firebase 函数时:config:get 它显示了正确的数据 webapp 本身尚未部署(可能是这样吗?)
任何想法/帮助将不胜感激 谢谢
【问题讨论】:
【参考方案1】:如果您希望使用 firebase serve
对函数进行本地仿真来获取环境变量,则需要遵循 documentation 中的这一说明:
如果您使用自定义函数配置变量,请运行 之前在项目的functions目录中执行以下命令 运行 firebase 服务。
firebase functions:config:get > .runtimeconfig.json
但是,如果您使用的是 Windows PowerShell,请替换上述命令 与:
firebase functions:config:get | ac .runtimeconfig.json
【讨论】:
谢谢,不知道。第一次尝试使用 firebase 创建网站:p 这个答案缺少一个重要的说明,使这个工作:在函数目录中运行它。谢谢【参考方案2】:为什么不使用functions
目录中的.env
文件?它会自动捕获环境变量。
【讨论】:
您是否测试过.env
可以通用,即使在站点上部署之后也是如此,或者您的意思是仅将其用于本地测试?因为如果是后者,那么 Doug 的答案会更好,因为它将使用您可以在函数中使用的实际环境配置,而不必使用两种不同的方法。
一般来说,也用于生产。基于 ...Doug 的回答 (***.com/a/65080783/11127383)。
谢谢,这澄清了它,虽然“官方”的方式是使用 firebase 的功能配置,记录,支持,所以使用它可能比.env
更实用,我想说... 以上是关于Firebase 函数环境变量无法读取未定义的属性的主要内容,如果未能解决你的问题,请参考以下文章
firebase云函数错误TypeError:无法读取未定义的属性“子”
Firebase 函数:无法读取未定义的属性“user_id”
TypeError:无法读取未定义 Firebase 存储反应的属性“参考”
无法在下一个 js 上读取 firebase 中未定义的属性“长度”