7

是否可以将图像保存到 android 的本地文件系统,以便可以从手机的“图库”和文件夹中查看?

我找到了这个react-native-fs库,但是在研究了文档并完成了一个示例之后,我仍然不确定它是否可能。

谢谢

4

2 回答 2

15

对于任何有同样问题的人,这里是解决方案。

解决方案

我正在使用react-native-fetch-blob库中的文件系统 API 。这是因为我认为它比“react-native-fs”库更好地记录和更容易理解。

我从服务器请求图像,接收 base64,然后将其保存到 android fs 中的 Pictures 目录。

我像这样保存图像:

var RNFetchBlob = require('react-native-fetch-blob').default;

const PictureDir = RNFetchBlob.fs.dirs.PictureDir;

getImageAttachment: function(uri_attachment, filename_attachment, mimetype_attachment) {

   return new Promise((RESOLVE, REJECT) => {

   // Fetch attachment
   RNFetchBlob.fetch('GET', config.apiRoot+'/app/'+uri_attachment)
   .then((response) => {

     let base64Str = response.data;

     let imageLocation = PictureDir+'/'+filename_attachment;

     //Save image
     fs.writeFile(imageLocation, base64Str, 'base64');
     console.log("FILE CREATED!!")

     RNFetchBlob.fs.scanFile([ { path : imageLocation, mime : mimetype_attachment } ])
     .then(() => {
       console.log("scan file success")
     })
     .catch((err) => {
       console.log("scan file error")
     })

    }).catch((error) => {
    // error handling
    console.log("Error:", error)
  });
},

上述方法中的以下代码会刷新图库,否则在手机关闭并重新打开之前,图像不会显示。

RNFetchBlob.fs.scanFile([ { path : imageLocation, mime : mimetype_attachment } ])
.then(() => {
  console.log("scan file success")
})
.catch((err) => {
  console.log("scan file error")
})

享受!

于 2016-08-09T12:09:17.533 回答
12

你完全可以用react-native-fs做到这一点。PicturesDirectoryPath项目的自述文件中没有提到一个常量;如果您将文件保存到那里,它应该出现在画廊应用程序中。如果您希望它出现在您自己的相册中,只需在该文件夹中创建一个新目录并将文件保存到那里,例如

const myAlbumPath = RNFS.PicturesDirectoryPath + '/My Album'

RNFS.mkdir(myAlbumPath)
  .then(/* write/copy/download your image file into myAlbumPath here */)

抱歉,我没有完整的示例代码了,因为我已将图像存储在我的应用程序的私有缓存目录中。无论如何,希望这会有所帮助!

于 2016-07-22T10:04:55.757 回答