如何使用react native和react-native-fetch-blob在iOS上下载和检索本地文件?

时间:2017-03-03 17:07:17

标签: ios iphone react-native react-native-fetch-blob

我使用react-native-fetch-blob下载mp3文件,然后再播放它们。问题是当我关闭应用程序并重新启动时RNFetchBlob.fs.dirs.DocumentDir的实际路径发生了变化,这意味着我无法在下载文件后立即使用我存储的绝对文件路径,在下次运行时检索文件该应用程序。

这是我下载和存储文件路径的代码:

export function downloadAudio(urlArray) { //download every section in the urlArray
  return (dispatch) => {
    Promise.all(urlArray.map(section => {
      dispatch(startDownload(section.section_id))
      console.log('download start for id = ',section.section_id ) //start download
      return RNFetchBlob
      .config({
        path: RNFetchBlob.fs.dirs.DocumentDir + '/courseSections/' + section.section_id + '.mp3',
        appendExt: 'mp3'
      })
      .fetch('GET', section.section_url, {
        'Cache-Control': 'no-store'
      })
      .progress({ count: 10 }, (received, total) => {
        console.log(`progress for section ${section.section_id}: `, Math.floor(received/total*100), '%')
        dispatch(downloadProgress({id: section.section_id, progress: Math.floor(received/total*100)/100}))
      })
      .then(res => {
        console.log(`section ${section.section_id} is saved to: `, res.path())
        return { path: res.path(), id: section.section_id }
      })
      .then(pathInfo => dispatch(downloadSuccess(pathInfo))) //download finished
    }))
      .catch((error, statusCode) => {
        console.log(statusCode, ' error: ', error)
      })
  }
}

我将{ path: res.path(), id: section.section_id }存储为持久应用状态的一部分。但是,下次打开应用程序时,它没有用,文件路径已经重新分配。例如,这是一个文件下载到的路径: downloaded file path

但在关闭应用程序并重新启动后,路径将更改为: /Users/NatashaChe/Library/Developer/CoreSimulator/Devices/830778DE-3CE3-4FC7-AA4B-DFBAE999751C/data/Containers/Data/Application/0C47E33F-ACF8-4539-9456-8FF3E8FBECB2/Documents/courseSections/14.mp3

即。文件已分配到Application文件夹下的其他子文件夹。

显然,音频播放器(我使用react-native-sound)无法使用应用程序存储的原始路径找到该文件。所以我的问题是:我有办法修路吗?或者是否有其他方法来检索我不知道的文件?

而且,我在计算机上使用iOS模拟器。 Haven还没试过这个电话。有谁知道上面的代码是否可以直接在iphone上使用并将文件保存到我的应用程序目录中?或者我应该以任何其他方式设置文件路径?

我使用反应原生0.41。

1 个答案:

答案 0 :(得分:4)

我做了以下更改以使其正常工作,至少现在在模拟器上。不确定在实际手机上发生了什么。

检索文件时,我现在直接在检索文件时使用res.path(),而不是使用上面代码中filePath = RNFetchBlob.fs.dirs.DocumentDir + '/courseSections/' + sectionInfo.section.section_id + '.mp3'返回的文件路径。