this.file.datadirectory在离子2中显示为无效



this.file.datadirectory显示了null,我已经在全球安装了Cordova,但仍然无法找到任何解决方案。我在哪里犯了一个错误?

download() {
    const fileTransfer: FileTransferObject = 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
    });
}

使用

cordova.file.dataDirectory

而不是

this.file.dataDirectory 

相关内容

  • 没有找到相关文章

最新更新