如何从CAMERA中选择并上传多张图像

时间:2019-04-26 07:41:41

标签: react-native

var multipliedArray = arrayIndex.Select((i, Index) => i * Index).ToArray();

在这里我只得到一张图片

select multiple images from camera not working 

****  working for single image capture and selection  *****



imageCamera(){
      this.setState({imageSourceText:'Camera'})
      let imagearray ={}
      ImagePicker.openCamera({compressImageMaxWidth:400,
        compressImageMaxHeight:400,multiple: true
        }).then(image => { . 

2 个答案:

答案 0 :(得分:0)

阅读该其他组件的文档,假设它可以完成您想要的并且与您正在使用的类似!

  

https://github.com/ivpusic/react-native-image-crop-picker

答案 1 :(得分:0)

我认为您不能使用/来拍摄多张照片。它仅适用于单张照片。一种解决方案是手动打开相机,拍摄所需数量的照片,然后在关闭相机时使用openCamera并从中选择多张照片:

openPicker