React Native NativeModule.ImagePickermanager is null



我正在尝试使用react-native-image-picker,但是我收到错误:NativeModule.ImagePickermanager为空。

import React, { Component } from 'react';
import { Text, View, StyleSheet, Alert, PixelRatio, Image } from 'react-native';
import ImagePicker from 'react-native-image-picker';
...
handleChoosePhoto = () => {
    const options = {
      noData: true,
    };
    ImagePicker.launchImageLibrary(options, response => {
      if (response.uri) {
        this.setState({ photo: response });
      }
    });
};
...
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
            {this.state.photo && (
    <Image
       source={{ uri: this.state.photo.uri }}
       style={{ width: 300, height: 300 }}
    />
  )}
  <Button title="Choose Photo" onPress={this.handleChoosePhoto} />
</View>

我试图跑react-native link react-native-image-picker.当我运行此命令时,没有任何反应。它不会在终端中显示任何内容。我正在使用IOS模拟器。

在过去的 8 小时内我一直在尝试解决此错误,但无法成功。请使用博览会的ImagePicker,这是它的链接。https://docs.expo.io/versions/latest/sdk/imagepicker/它将解决您的错误。

我也有同样的问题.这就是对我有用的东西。

统一最新版本npm 卸载反应本机映像选择器已安装版本 0.28.0npm install react-native-image-picker@0.28.0 --saveReact-native link React-native-image-picker

相关内容

  • 没有找到相关文章

最新更新