美文网首页
json串行化和变成字符串

json串行化和变成字符串

作者: 增商 | 来源:发表于2020-03-07 23:26 被阅读0次
    • stringify
    • parse
      注意json格式,只能双引号包裹key;
     let json= '{ "a": 1, "b": 2, "c": 3 }';
    //这是一个json字符串
    
    //解析这个字符串用JSON.parse方法,注意必须是json格式
      let str2 = '{ "a": 1, "b": 2, "c": 3 }';
      console.log(JSON.parse(str2));
    

    串行化,json变为字符串

    let str = { a: 1, b: 2, c: 3 };
    let json = JSON.stringify(str);
    console.log(json)
    

    相关文章

      网友评论

          本文标题:json串行化和变成字符串

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