我使用带有选项的库 rn-fetch-blob 下载了一个视频文件,因为缓存是真的。我从下面的代码中获得了文件夹的路径。但是如何获取和播放视频(我不使用下载管理器选项或文件路径)?
`RNFetchBlob
.config({
// add this option that makes response data to be stored as a file,
// this is much more performant.
fileCache : true,
})
.fetch('GET', 'http://www.example.com/file/example.mp4', {
//some headers ..
})
.then((res) => {
// the temp file path
console.log('The file saved to ', res.path())
})`