编程语言
首页 > 编程语言> > 数组或对象转为JSON字符换 JavaScript JSON.stringify()

数组或对象转为JSON字符换 JavaScript JSON.stringify()

作者:互联网

JavaScript JSON.stringify()

    var stu = [{
        name: 'Tom',
        age: 18
    },{
        name: 'Jerry',
        age: 19
    },{
        name: 'Sunny',
        age: 20
    }]
    var student = JSON.stringify(stu, null, 2);
    console.log(Object.prototype.toString.call(student));
    // [object String]
    console.log(Object.prototype.toString.call(stu));
    // [object Array]

标签:replacer,space,JavaScript,stringify,JSON,数组
来源: https://www.cnblogs.com/SharkJiao/p/13698682.html