phonegap:从托管Web应用程序访问Android本地映像

时间:2014-06-30 05:10:29

标签: cordova cordova-plugins

我们的托管网络应用程序(包含在Phonegap应用程序中)是否可能从设备数据访问本地文件?

类似的东西:

<img src="storage\data\com.phonegap.myapp\img\sample.jpg" />

因此,当用户打开移动应用程序时,将从设备存储中检索图像。

1 个答案:

答案 0 :(得分:4)

window.resolveLocalFileSystemURL(imageURI, function(fileEntry) {
fileEntry.file(function(fileObj) {

newimageURI = fileObj.fullPath;
      alert(newimageURI);

});
});

我认为它会对你有所帮助