【发布时间】:2019-11-12 16:31:31
【问题描述】:
我正在使用 RN 相机胶卷 (https://facebook.github.io/react-native/docs/cameraroll.html) 访问一系列图像以作为表单的一部分进行选择。我的问题是 - 有谁知道是否可以访问图像的 base64 - 或者在这种情况下最简单的转换方法。
这是我的 usePhotos 类:
usePhotos = () => {
CameraRoll.getPhotos({
first: 20,
assetType: 'Photos',
})
.then(r => {
this.setState({ ADModalState:false,
ADMediaCamera:false, isModalVisible:true, ADphotos: r.edges, ADPhotosBase:r.edges });
})
.catch((err) => {
//Error Loading Images
console.warn(err);
});
};
【问题讨论】:
标签: reactjs react-native