使用react native将图像上传到Firebase存储中>>

问题描述 投票:0回答:2

我正在使用expo和firebase来构建本机应用程序,我想将图像上传到firebase存储。我具有以下功能作为onPress函数来上传图像。

choosePhoto = () => {
        const options = {
          noData: true,
        }
        ImagePicker.launchImageLibrary(options, response => {
          if (response.uri) {
            this.setState({ photo : response })
          }
        })
      }

我在运行应用程序时收到错误消息“未定义的不是函数(在'... ImagePicker.launchImageLibrary ...'附近)。如何解决错误?

我正在使用expo和firebase来构建本机应用程序,我想将图像上传到firebase存储。我具有以下功能作为onPress函数来上传图像。 ...

react-native firebase-storage expo
2个回答
0
投票

您需要链接react-native-image-picker:


0
投票

我有一个例子:

© www.soinside.com 2019 - 2024. All rights reserved.