我正在使用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-image-picker:
我有一个例子: