我尝试使用 PhonegapgetFile
功能在我的 iOS 应用程序(phonegap 2.1 + jquerymobile)中读取文件,但我总是有这个错误:
Error in error callback: File3 = TypeError: 'undefined' is not an object
我的文件在www/data/datajson.txt
其中并包含一些 json 数据。
我的代码:
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
}
function gotFS(fileSystem) {
//get www folder path
var path = window.location.pathname;
path = path.substr( path, path.length - 10 );
var pathwww = path;
console.log(pathwww); /* /var/mobile/Applications/{ID}/{APPNAME}.app/www/ */
fileSystem.root.getFile("file//"+pathwww+"data/datajson.txt", null, gotFileEntry, fail);
// result : Error in error callback: File3 = TypeError: 'undefined' is not an object
pathwww.getFile("file///data/datajson.txt", null, gotFileEntry, fail);
// result : Error in success callback: File2 = TypeError: 'undefined' is not a function
}
function gotFileEntry(fileEntry) {
fileEntry.file(gotFile, fail);
}
function gotFile(file){
readDataUrl(file);
readAsText(file);
}
function readDataUrl(file) {
var reader = new FileReader();
reader.onloadend = function(evt) {
console.log("Read as data URL");
console.log(evt.target.result);
};
reader.readAsDataURL(file);
}
function readAsText(file) {
var reader = new FileReader();
reader.onloadend = function(evt) {
console.log("Read as text");
console.log(evt.target.result);
};
reader.readAsText(file);
}
function fail(evt) {
console.log(evt.target.error.code);
}
我不明白为什么我不能在我的www
文件夹中导航并阅读我的datajson.txt
文件。
谢谢你的帮助。