在react-native中,将原始文件转换为实际文件。

问题描述 投票:1回答:1

I'm having an raw file getting from an server for eg:

file: {
fileName:xyz,
size:7125,
mimeType:document/pdf
}

我怎么能把这个转换为正常的文件,并把它保存到尊重的目录。谢谢你。

react-native file makefile react-redux
1个回答
1
投票

你已经下载了该文件,并存储在你的手机内存,对于下载你有以下选项。

  1. 使用该库。

    https:/github.comjoltuprn-fetch-blob#直接下载到存储空间。

  2. 打开你的链接 browser and download it through the browser

    https:/reactnative.devdocslinking#openurl

  3. 如果您使用的是 expo 你可以这样做

    https:/docs.expo.ioversionslatestsdkfilesystem#example-usage。

© www.soinside.com 2019 - 2024. All rights reserved.