Ionic native Transfer 插件的 `file.dataDirectory` 显示错误
Ionic native Transfer plugin's `file.dataDirectory` shows error
我将使用 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
});
}
哦..我的坏:(
我也必须安装 File plugin :D
$ ionic cordova plugin add cordova-plugin-file --save
$ npm install --save @ionic-native/file
我将使用 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
});
}
哦..我的坏:(
我也必须安装 File plugin :D
$ ionic cordova plugin add cordova-plugin-file --save
$ npm install --save @ionic-native/file