在React Native中是否有任何预取音频的方法,或者有任何允许我这样做的库?
答案 0 :(得分:0)
在缺乏信息的情况下,我相信您是在问是否可以下载带有react native的音频? 您可以使用类似https://www.npmjs.com/package/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.zip', {
//some headers ..
})
.then((res) => {
// the temp file path
console.log('The file saved to ', res.path())
})