将文件保存到文件夹中

时间:2017-07-24 17:58:52

标签: ionic-framework

我知道我应该使用任何插件。我目前使用一个名为gif.js的库,它允许我生成一个gif。

//this is result of create the gif
url = blob:http://localhost:8100/c5b4bc73-e64d-4556-982a-537a7027a1e5;

<Img src = 'blob:http://localhost:8100/c5b4bc73-e64d-4556-982a-537a7027a1e5'>

我可以毫无问题地看到gif。

我打算将这个gif保存在我的Android设备上的某个文件夹中。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

使用FileTransfer插件

          const fileTransfer = new FileTransfer();

           fileTransfer.download(frompath, that.fsurl+topath,
             (response) => {
                    resolve(response);
                },
                (error) => {
                    reject(error);
                }
            );