JSON.parse在PhoneGap中不起作用

时间:2013-02-16 09:13:17

标签: javascript ios xcode json cordova

我正在开发一个需要将文件中的用户数据保存为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命令。

2 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分:2)

供阅读使用:

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

写作用途:

writer.write(JSON.stringify(propFileJson));