https://medium.com/@wcandillon/uploading-images-to-firebase-with-expo-a913c9f8e98d
我一直在关注如何使用expo将图片上传到Google存储的谷歌云功能,但我一直收到此错误:
TypeError: handler is not a function
at cloudFunction (/user_code/node_modules/firebase-functions/lib/providers/https.js:26:41)
at /var/tmp/worker/worker.js:671:7
at /var/tmp/worker/worker.js:655:9
at _combinedTickCallback (internal/process/next_tick.js:73:7)
at process._tickDomainCallback (internal/process/next_tick.js:128:9)
感谢任何帮助。我没有开发快递应用程序的经验,但如果我很快找不到答案,我可能需要。
答案 0 :(得分:0)
感谢您的回复。我发现了这个问题。我没有在代码上使用module.exports将其导出到索引文件,其中所有我的谷歌云功能都已注册,这是下面的代码
exports.api = functions.https.onRequest(api);
感谢您的回应。