我们的托管网络应用程序(包含在Phonegap应用程序中)是否可能从设备数据访问本地文件?
类似的东西:
<img src="storage\data\com.phonegap.myapp\img\sample.jpg" />
因此,当用户打开移动应用程序时,将从设备存储中检索图像。
答案 0 :(得分:4)
window.resolveLocalFileSystemURL(imageURI, function(fileEntry) {
fileEntry.file(function(fileObj) {
newimageURI = fileObj.fullPath;
alert(newimageURI);
});
});
我认为它会对你有所帮助