JSON

作者: april_Dong | 来源:发表于2016-08-03 14:53 被阅读0次

    JS对象 与 JSON的区别

    屏幕快照 2016-08-08 下午11.12.05.png
    JavaScript Object Notation
    JSON.parse(text[,reviver]):JSON字符串转为JS
    eg.
    var userJson= '{
    "id":1,
    "nick":"maomao",
    "avatar":"1.jpg",
    "tags":null,
    "authed":false
    }';
    var user = JSON.parse(userJson);
    user
    Object {id: 1, nick: "maomao", avatar: "1.jpg", tags: null, authed: false}

    var user=JSON.parse(userJson,function(k,v){
    if(k==='avatar'){
    return 'http://music.12.com/img/'+v;
    }
    return v;
    });
    user
    Object {id: 1, nick: "maomao", avatar: "http://music.12.com/img/1.jpg", tags: null, authed: false}
    JSON.stringify(value[,replacer[,space]]):JS对象转为JSON字符串 也称为序列化过程

    屏幕快照 2016-08-08 下午11.31.47.png

    相关文章

      网友评论

          本文标题:JSON

          本文链接:https://www.haomeiwen.com/subject/cnvqsttx.html