0
我遇到問題了。 我想用phonegap cordova 2.1下載圖片並在蘋果iphone/ipad Galery上展示它們。 我已經測試了這個javascript函數如何使用phonegap下載圖片在ios圖庫?
$("#btnDL").click(function(){
var file = $("#imgViewer img").attr('src');
var aux =file.split('/');
var fName = aux[aux.length - 1];
var fileTransfer = new FileTransfer();
fileTransfer.download(encodeURI(file),"/var/mobile/Applications/9A25FA0A-49A9-4DED-BD83-5FF043A9075/Document/MyApplicationName",function(entry){
alert("Image saved in "+entry.fullPath);
},function(error){
alert("ERR: "+JSON.stringify(error));
});
});
功能告訴我的文件保存在我的iPad。但是,如果我在畫廊中搜索,有任何圖片。我曾經想過在Objective-C中做一個插件,但我不知道這種語言。 我已經測試做一個插件本
http://blog.clearlyinnovative.com/post/1097750723/phonegap-plugin-for-downloading-url
這
https://github.com/aaronksaunders/FileDownLoadApp
,但他們沒有工作。