Как скачать файл в реагировать родной из строки base64? - PullRequest
0 голосов
/ 07 марта 2019

Я попробовал следующий код, чтобы загрузить файл. Он работает хорошо.Но у меня есть файл в формате base64.Так как я могу скачать это?

const { config, fs } = RNFetchBlob;
let PictureDir = fs.dirs.PictureDir; // this is the pictures directory. You can check the available directories in the wiki.
let options = {
  fileCache: true,
  addAndroidDownloads: {
    useDownloadManager: true, // setting it to true will use the device's native download manager and will be shown in the notification bar.
    notification: true,
    path: PictureDir + '/Testing.pdf', // this is the path where your downloaded file will live in
    description: 'Downloading image.'
  }
};
config(options).fetch('GET', 'http://www.africau.edu/images/default/sample.pdf').then((res) => {
  console.warn(res);
  alert('HIIII');
});
...