리액트 네이티브에서 이미지 다운로드 받는 방법

nawnoes·2020년 3월 26일
0

React-Native Image Download


리액트 네이티브에서 이미지 다운로드 받는 방법

1. expo FileSystem


FileSystem.downloadAsync(uri, fileUri, options)

uri를 이용해서 파일 다운로드. local 파일 디렉토리는 먼저 존재해야한다.

Example

FileSystem.downloadAsync(
  'http://techslides.com/demos/sample-videos/small.mp4',
  FileSystem.documentDirectory + 'small.mp4'
)
  .then(({ uri }) => {
    console.log('Finished downloading to ', uri);
  })
  .catch(error => {
    console.error(error);
  });

References

0개의 댓글