React Native - CameraRoll问题未定义不是对象

时间:2017-07-25 07:35:48

标签: react-native react-native-ios react-native-0.46

我使用 react-native-image-picker 来获取图片格式相机和照片库。我按照步骤并在xcode中链接react-native-image-picker。我也会编写代码来打开imagePicker。但是有错误。

注意:我将使用0.46作为反应原生。

在iOS和Android中成功链接。

enter image description here

我的代码:

import { ImagePicker } from 'react-native-image-picker'

和onButton:

handleImagePickUp = () =>{
   ImagePicker.launchImageLibrary(options, (response)  => {
   });
}

错误:

enter image description here

1 个答案:

答案 0 :(得分:1)

而不是写

import { ImagePicker } from 'react-native-image-picker'

你应该声明(在同一个地方)......

var ImagePicker = require('react-native-image-picker');

您的其他代码应该可以使用,但由于未提供,因此很难说清楚。希望这会有所帮助,如果您不明白为什么必须这样做,请告诉我。