1

反応ネイティブを使用して Android アプリケーションを開発しようとしています。要件の 1 つは、事前に定義されたファイル名に基づいてキャプチャ イメージをプログラムで自動的に保存することです。react-native-image-picker を使用しています。

image-picker の API は、プログラムで定義されたファイル名ごとに画像を保存する方法を示していません。私が使用しているチュートリアルにも表示されません。

どうもありがとう。

4

2 に答える 2

0

以下のようにしました。正常に動作しています。

ImagePicker.launchCamera({},(responce)=>{
      const localTime = new Date().getTime();
      const file ={
        uri : responce.uri,
        //give the name that you wish to give
        name :localTime +'.jpg',
        method: 'POST',
        path : responce.path,
        type :  responce.type,
        notification: {
            enabled: true
          }
      }
       console.log(file);
    })
  }
于 2019-03-27T13:24:14.617 に答える
0

私はこのようにしました。これはあなたを助けるかもしれません。

ImagePicker.launchCamera({},(responce)=>{
      this.setState({
          pickedImage: { uri: res.uri }
        });
      console.log(this.state.serverTime);
      const file ={
        uri : responce.uri,
        //give the name that you wish to give
        name :this.state.currentTimeInMilisec+'.jpg',
        method: 'POST',
        path : responce.path,
        type :  responce.type,
        notification: {
            enabled: true
          }
      }
       console.log(file);
    })
  }
于 2019-02-14T06:50:32.763 に答える