0

我正在开发一个需要将用户数据作为 JSON 格式保存在文件中的程序。将我的数据保存为 JSON 效果很好,但是当我尝试使用JSON.parse它来解析我存储的 JSON 时它不起作用。这是我存储数据的代码:

function writeUser(data) {
    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fs){
        fs.root.getFile('user.data', {create: true, exclusive: false}, function(fe){
            fe.createWriter(function(writer){
                //Its converts my data to JSON here
                writer.write(JSON.stringify(data));
                //It displays this so I knows its been written!
                console.log('File written');
            }, failwrite);
        }, failwrite);
    }, failwrite);
}
function failwrite(error) {
    console.log(error.code);
}

这是读取我的数据的代码:

function readUser(){
    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fs){
        fs.root.getFile('user.data', null, function(fe){
            fe.file(function(file){
                return readAsText(file);
            }, failread);
        }, failread);
    }, failread);
}
function readAsText(file) {
    var reader = new FileReader();
    reader.onloadend = function(evt) {
        console.log(evt.target.result);
    };
    return reader.readAsText(file);
}

它以字符串的形式返回我的数据,这是我得到的字符串{"status":"true","id":"1","password":"xx"},但是当我将 JSON.parse 与我的数据一起使用时,它返回身份不明的对象。这是它使用的部分JSON.parse

readUser();
var user = JSON.parse(readUser());
console.log(user);

它甚至不会使用解析的 JSON 运行我的 console.log 命令。

4

2 回答 2

2

readUser 不返回任何内容。该文件的内容在 readAsText 回调中可用。你必须 json 解析 evt.target.result 并从那里继续。

于 2013-02-16T09:29:52.220 回答
2

供阅读使用:

jsonVariable = jQuery.parseJSON(evt.target.result);

写作用途:

writer.write(JSON.stringify(propFileJson));
于 2014-02-11T18:15:27.563 回答