JSON内容
程序员文章站
2022-07-12 15:11:51
...
JSON是什么
JSON是一种数据格式也是一个对象,JSON对象有两个方法parse()和stringify();
json文件的属性都是字符串需要用双引号(")包裹,每个键值对使用逗号(,)分开。
值(value)可以是双引号括起来的字符串(string)、数值(number)、true、false、 null、对象(object)或者数组(array)但不能是NaN、undefined、不能是js代码
面试例子
{
"class": "开发",
"class": "开发",
"name": "张三",
"birthday": [new Date()], // 有错,不能是js代码。
age: NaN, // 值不能是NaN、undefined,属性必须是双引号字符串
address: null, // 属性必须是双引号字符串
"books": undefined, // 值不能是NaN、undefined
'action': function() {console.log(this['birthday'])} // 不能是js代码。属性必须是双引号字符串
}
参考json官网
转载于:https://www.jianshu.com/p/b42ff01e83a8
下一篇: laravel json数组验证