Ionic native Transfer插件的`file.dataDirectory`显示错误

时间:2017-06-08 06:41:51

标签: ionic-framework ionic2 ionic3 ionic-native

我将使用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
        });
    }

1 个答案:

答案 0 :(得分:0)

哦..我的坏:(

我也必须安装File plugin:D

$ ionic cordova plugin add cordova-plugin-file --save
$ npm install --save @ionic-native/file