1

反応ネイティブアプリで反応ネイティブカメラを使用していますが、すべてうまく機能しますが、写真を撮るとデバイスに保存したくない写真が保存されます。画像はAPIに送信されるはずですが、保存されません私のデバイスでは、デバイスに保存しないようにする方法を知っている人はいますか?

render() {
return(
  <View style={styles.container}>
    <Camera
      style={styles.camera}
      ref={ref => {this.camera = ref;}}
      type={Camera.constants.Type.back}
      flashMode={Camera.constants.FlashMode.on}
      orientation={Camera.constants.Orientation.landscapeLeft}>
      <TouchableOpacity onPress={this.takePicture.bind(this)} style={{zIndex: 100}}>
        <View style={styles.cameraButton}></View>
      </TouchableOpacity>
    </Camera>
  </View>
  );
}

takePicture()
{
  this.camera.capture()
  .then((data) => this.sendData(data))
  .catch(err => console.error(err));
}
4

2 に答える 2