gpt4 book ai didi

firebase - 我们不能在 Firebase Cloud Functions 中写入多个文件吗

转载 作者:行者123 更新时间:2023-12-04 22:28:25 26 4
gpt4 key购买 nike

我们如何使用 Firebase Cloud Functions 实现微服务架构
我们可以写多个 .js 文件,而不像将所有函数都写入 index.js 这样我们不需要重新部署所有函数来更改单个函数

最佳答案

我正在使用 firebase 函数导入其他 .js 文件。将functions文件夹视为root,我错误地尝试从/functions父文件夹导入文件。

index.js

var paymentFunctions = require('./payment_functions');

以及类似的东西:
exports.paymentMethodTask = functions.database.ref('/newPaymentMethodTask/{taskId}').onWrite(event => {
return paymentFunctions.processPaymentMethodTask(event);
});

使用文件夹结构:
/myProject/functions/index.js
/myProject/functions/payment_functions.js

然后像往常一样导出 payment_functions.js 中的函数:
module.exports = {
processPaymentMethodTask: function test(event) {
//do something here with the event
}
};

https://medium.com/step-up-labs/our-experience-with-cloud-functions-for-firebase-d206448a8850

关于firebase - 我们不能在 Firebase Cloud Functions 中写入多个文件吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45164430/

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