Phonegap 関数を使用して iOS アプリ (phonegap 2.1 + jquerymobile) でファイルを読み取ろうとしましたが、getFile
常に次のエラーが発生します。
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
助けてくれてありがとう。