gpt4 book ai didi

javascript - 如何使用 Ionic Framework 下载文件到 Download 目录?

转载 作者:太空狗 更新时间:2023-10-29 16:12:35 24 4
gpt4 key购买 nike

我正在尝试使用 ngCordova,但 cordova.file.documentsDirectory 属性为 null

我也尝试过将 ngCordovarequestFileSystem 结合使用,但文件仍然没有保存在“下载”中。

我的代码示例:

window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(directory) {
var fileTransfer = new FileTransfer();
fileTransfer.download(
encodeURI("http://example.com/sample.pdf"),
directory.root.nativeURL + 'sample.pdf',
function(entry) {
console.log("download complete: " + entry.fullPath);
},
function(error) {
console.log("download error source " + error.source);
console.log("download error target " + error.target);
console.log("upload error code" + error.code);
},
false
);
}, function(err){console.error(err)});

谢谢。

最佳答案

cordova.file.externalRootDirectory + '/Download/' + 'sample.pdf' 而不是 directory.root.nativeURL + 'sample.pdf'

关于javascript - 如何使用 Ionic Framework 下载文件到 Download 目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41491042/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com