我写了一个jQuery Mobile应用程序,并将它与Phonegap一起打包到iOS和Android应用程序。
此时我使用本地存储的json文件来读取数据。
我想通过从服务器下载更新的json文件来不时更新这些json文件。
如何从服务器获取json并将json文件存储到Android和iOS的本地文件系统?
干杯 Johe
答案 0 :(得分:94)
使用FileTransfer.download
,这是一个例子:
function downloadFile(){
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0,
function onFileSystemSuccess(fileSystem) {
fileSystem.root.getFile(
"dummy.html", {create: true, exclusive: false},
function gotFileEntry(fileEntry) {
var sPath = fileEntry.fullPath.replace("dummy.html","");
var fileTransfer = new FileTransfer();
fileEntry.remove();
fileTransfer.download(
"http://www.w3.org/2011/web-apps-ws/papers/Nitobi.pdf",
sPath + "theFile.pdf",
function(theFile) {
console.log("download complete: " + theFile.toURI());
showLink(theFile.toURI());
},
function(error) {
console.log("download error source " + error.source);
console.log("download error target " + error.target);
console.log("upload error code: " + error.code);
}
);
}, fail);
}, fail);
};
}
答案 1 :(得分:24)
这就是我解决它的方式。首先设置文件路径,对于Android和iOS来说是不同的
var file_path;
function setFilePath() {
if(detectAndroid()) {
file_path = "file:///android_asset/www/res/db/";
//4 Android
} else {
file_path = "res//db//";
//4 apache//iOS/desktop
}
}
然后我将我的JSON文件加载到本地浏览器存储中,这些文件已预先打包了应用程序。像这样:
localStorage["my_json_data"] = loadJSON(file_path + "my_json_data.json");
function loadJSON(url) {
return jQuery.ajax({
url : url,
async : false,
dataType : 'json'
}).responseText;
}
如果我想更新我的数据。我从服务器获取新的JSON数据并将其推送到本地存储。如果服务器位于不同的域(大多数情况下是这种情况),则必须进行JSONP调用(在JSONP上检查jQuery的文档)。 我这样做了:
$.getJSON(my_host + 'json.php?function=' + my_json_function + '&callback=?', function (json_data) {
//write to local storage
localStorage["my_json_data"] = JSON.stringify(json_data);
});
答案 2 :(得分:8)
您可以在一行代码中执行此操作:
new FileManager().download_file('http://url','target_path',Log('downloaded success'));
target_path:可以包含目录(例如:dira / dirb / file.html),并且将以递归方式创建目录。
您可以在此处找到要执行此操作的库:
答案 3 :(得分:2)
我的建议是调查PhoneGap的File API。我自己没有使用它,但它应该做你想要的。
答案 4 :(得分:1)
更新了新Cordova的答案
function downloadFile(url, filename, callback, callback_error) {
var fileTransfer = new FileTransfer();
fileTransfer.download(url,
cordova.file.dataDirectory + "cache/" + filename,
function (theFile) {
console.log("download complete: " + theFile.toURL());
if (callback)
callback();
},
function (error) {
console.log("download error source " + error.source);
console.log("download error target " + error.target);
console.log("upload error code: " + error.code);
if (callback_error)
callback_error();
}
);
}
答案 5 :(得分:0)
要下载和显示文件,请按照示例代码操作。
在index.html
中的</head>
标记上方添加指定代码
< script type = "text/javascript" charset = "utf-8" >
// Wait for Cordova to load
document.addEventListener("deviceready", onDeviceReady, false);
// Cordova is ready
function onDeviceReady() {
alert("Going to start download");
downloadFile();
}
function downloadFile() {
window.requestFileSystem(
LocalFileSystem.PERSISTENT, 0,
function onFileSystemSuccess(fileSystem) {
fileSystem.root.getFile(
"dummy.html", {
create: true,
exclusive: false
},
function gotFileEntry(fileEntry) {
var sPath = fileEntry.fullPath.replace("dummy.html", "");
var fileTransfer = new FileTransfer();
fileEntry.remove();
fileTransfer.download(
"http://www.w3.org/2011/web-apps-ws/papers/Nitobi.pdf",
sPath + "theFile.pdf",
function(theFile) {
console.log("download complete: " + theFile.toURI());
showLink(theFile.toURI());
},
function(error) {
console.log("download error source " + error.source);
console.log("download error target " + error.target);
console.log("upload error code: " + error.code);
}
);
},
fail);
},
fail);
}
function showLink(url) {
alert(url);
var divEl = document.getElementById("deviceready");
var aElem = document.createElement("a");
aElem.setAttribute("target", "_blank");
aElem.setAttribute("href", url);
aElem.appendChild(document.createTextNode("Ready! Click To Open."))
divEl.appendChild(aElem);
}
function fail(evt) {
console.log(evt.target.error.code);
}
</script>
参考: - Blog Post