gpt4 book ai didi

file - PhoneGap resolveLocalFileSystemURI

转载 作者:行者123 更新时间:2023-12-04 10:19:05 25 4
gpt4 key购买 nike

我正在尝试解决如下所示的文件系统 uri:

/var/mobile/Applications/9483756B-8D2A-42C5-8CF7-8D76AAA8FF2C/Shift.app/iqedata/5977e2e9239649d5a7e3b8a54719679f/06e2b8896e51472789fcc27575631f94.jpg

任何人都可以告诉我如何在 PhoneGap 中解析这个 uri 并使用下面显示的方法获取 FileEntry 吗?
window.resolveLocalFileSystemURI(Url, resOnSuccess, resOnError);

我试图在 uri 之前添加“file://”或“//”,但它不起作用。

谢谢。

最佳答案

PhoneGap 不会让您读取 [APP HASH]/Documents 或 [APP HASH]/tmp 文件夹之外的文件。除非您能找到一种方法来使用这些文件夹中的数据初始化您的应用程序,否则您将不得不以另一种方式获取数据。我发现下面的代码可以工作。基本上它会将本地文件下载到您的临时文件夹中,并为您提供文件条目。

window.requestFileSystem(LocalFileSystem.TEMPORARY, 0, function(fs){
fs.root.getFile("temp", {create: true, exclusive: false},
function(entry){
fileTransfer.download(
Url, // the filesystem uri you mentioned
entry.fullPath,
function(entry) {
// do what you want with the entry here
console.log("download complete: " + entry.fullPath);
},
function(error) {
console.log("error source " + error.source);
console.log("error target " + error.target);
console.log("error code " + error.code);
},
false,
null
);
}, function(){
alert("file create error");
});
}, null);

关于file - PhoneGap resolveLocalFileSystemURI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16065494/

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