【发布时间】:2018-03-22 20:57:22
【问题描述】:
我使用 IonicNative 插件下载 pdf 文件。
https://ionicframework.com/docs/native/file-transfer/
我可以使用警报看到下载完成,但看不到任何下载发生。
private filetransfer: FileTransferObject = this.transfer.create();
const url = 'https://www.example.com/example%20test.pdf';
this.filetransfer.download(url, this.file.dataDirectory + 'example%20test.pdf').then((entry) =>
{
alert('download complete: ' + entry.toURL());
},
(error) => {
alert(error);
});
这是正确的做法还是我错过了什么?
【问题讨论】:
标签: ionic-framework ionic-native