作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试解决如下所示的文件系统 uri:
/var/mobile/Applications/9483756B-8D2A-42C5-8CF7-8D76AAA8FF2C/Shift.app/iqedata/5977e2e9239649d5a7e3b8a54719679f/06e2b8896e51472789fcc27575631f94.jpg
window.resolveLocalFileSystemURI(Url, resOnSuccess, resOnError);
最佳答案
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/
我正在尝试解决如下所示的文件系统 uri: /var/mobile/Applications/9483756B-8D2A-42C5-8CF7-8D76AAA8FF2C/Shift.app/iqedat
我创建了一个 Web 应用程序,我需要将其转换为移动应用程序,现在我只有 html5/js/css 文件,这意味着我没有任何 www foder 没有平台文件夹,也没有 cordova 项目.....
我使用 Genymotion 模拟器在 Android 上使用 Cordova 3.4 运行以下命令: window.resolveLocalFileSystemURL('file:///storag
我正在尝试从我的 ionic(v1) 应用程序中保存 png 图像。这在 android 中运行良好,但在 iOS 中出现错误。 错误是 ERROR: Wrong type for parameter
我是一名优秀的程序员,十分优秀!