我正在使用电话差距,我想用手机差距文件api读取文件。我可以读取文件。但是当我把我的JSON放入一个变量时,它只返回'[]'。使用JSON填充JavaScript变量
var json;
function readFS(fileSystem) {
fileSystem.root.getFile("readme.txt", {create: true}, readFileEntry, fail);
}
function readFileEntry(fileEntry) {
fileEntry.file(gotFileread, fail);
}
function gotFileread(file){
readAsText(file);
}
function readAsText(file) {
var reader = new FileReader();
reader.onloadend = function(evt) {
console.log("Read as text");
console.log(evt.target.result);
json = evt.target.result; // this returns only []
navigator.notification.alert(evt.target.result); // this returns the real JSON :o
};
reader.readAsText(file);
}
这是在readme.txt文件
{"games":[{"id":"2","name":"bartje","photo":"photo2.png","description":"kimpe","length":"is","totalDownloads":"0","totalFinished":"0","locations":[{"id":"3","name":"loc21","photo":"loc21.jpg","description":"loc21","FK_Game_id":"2","lat":"51.0000","long":"4.0000","status":"0"},{"id":"5","name":"loc22","photo":"loc22.jog","description":"locatie 22","FK_Game_id":"2","lat":"51.2330","long":"40.2222","status":"1"}]},{"id":"3","name":"aa","photo":"photo3.jPg","description":"aa","length":"aa","totalDownloads":"0","totalFinished":"3","locations":[{"id":"4","name":"loc4","photo":"loc4.jpg","description":"loc4","FK_Game_id":"3","lat":"51.2191","long":"4.4021","status":"0"}]}]}
我现在可以从文件中检索数据,并把它放在一个变量的JSON。现在我唯一的问题是我不能用它作为JSON像
json.games[0].id
我试图做
json = eval(evt.target.result);
但是,这并不工作:○
这不会解决你的问题......但是,一旦你得到正确的JSON文本,你将需要eval()的入JSON变量。 –