functions.runWith不是在部署时使用Firebase云函数的函数

时间:2018-10-20 09:42:12

标签: google-cloud-functions

尝试使用runWith选项部署功能时遇到此错误

echo 'The result is : ' . myConvertFunction('9.5%');

The result is : 0.095

1 个答案:

答案 0 :(得分:1)

至少需要版本2.0.1的firebase函数。

要解决此问题

npm i firebase-functions@latest
npm i firebase-admin@latest

请紧记2.x.x引入了一些重大更改。