我将使用the Ionic native Transfer plugin,如下所示。
问题在这里this.file.dataDirectory
。它显示的错误如[ts] Property 'dataDirectory' does not exist on type 'File'.
。你能告诉我这是什么解决方案吗?
download() {
const fileTransfer: TransferObject = this.transfer.create();
const url = 'http://www.example.com/file.pdf';
fileTransfer.download(url, this.file.dataDirectory + 'file.pdf').then((entry) => {
console.log('download complete: ' + entry.toURL());
}, (error) => {
// handle error
});
}
答案 0 :(得分:0)
哦..我的坏:(
我也必须安装File plugin:D
$ ionic cordova plugin add cordova-plugin-file --save
$ npm install --save @ionic-native/file