【发布时间】:2018-05-13 16:34:27
【问题描述】:
在一个角度/离子应用程序中,我有以下代码可以从互联网下载 pdf。
public pdfDownload(){
const fileTransfer: FileTransferObject = this.transfer.create();
const mime = 'application/pdf';
const pdfFile = 'http://www.pdf995.com/samples/pdf.pdf';
// alert(this.file.dataDirectory);
fileTransfer.download(pdfFile, this.file.dataDirectory + 'file.pdf', true)
.then((entry) => {
alert('download complete: ' + entry.toURL());
}, (error) => {
// handle error
});
}
【问题讨论】:
-
你找到解决办法了吗?
标签: angular ionic-framework ionic3