json数据格式
javascript的ajax操作
ajax操作---向后端处理程序发送http请求,得到响应结果
---与后端处理程序数据交换。
json数据格式
1.为什么在学习ajax操作之前学习json数据格式?
⼀般情况下后端处理程序不会识别javascript对象,前端处理程序往往会是不会识别后端处理程序返回的数据对象。
此时我们需要⼀种数据格式能够被后端处理程序和前端处理程序都识别--json数据格式
2.什么是 JSON ?
JSON--JavaScript对象表⽰法【JavaScript Object Notation】
脱离编程语⾔的进⾏数据交换的⽂本【字符串】数据格式
json转换对象
在没有JSON之前我们使⽤XML充当数据交换格式。
3.JSON数据的组成----⽂本【字符串】
1.json对象
1.“{}”--json对象的字符串表⽰
2.“{}”包含的是--【键值对】
键---使⽤双引号包围
值---数字,字符串【双引号包围】,
逻辑值,json数组【使⽤[]】,
JSON对象【使⽤{}】,null
例如:使⽤json对象的字符串表⽰⽅式表⽰⼀个学⽣基本信息
"{\"stuid\":\"1001\",
\"stuname\":\"张三\",
\"stuage\":23,
\"stuaddress\":[{\"type\":\"家庭\",\"info\":\"长安南路\"},
{\"type\":\"学校\",\"info\":\"⾼新⼀中\"}]}"
4.JSON数据的转换
我们得到的json数据有可能是json对象,也有可能是json字符串。因此我们就需要将json对象与json字符串进⾏转换。
1.判断得到的是json对象还是json字符串。
var  stustring="[{\"stuid\":\"1001\",\"stuname\":\"张三\",\"stuage\":23,\"stuaddress\":[{\"type\":\"家庭\",\"info\":\"长安南路\"},{\"type\":\"学校\",\"info\":\"⾼新⼀中\"}]},"+
"{\"stuid\":\"1002\",\"stuname\":\"李四\",\"stuage\":24,\"stuaddress\":[{\"type\":\"家庭\",\"info\":\"长安南路\"},{\"type\":\"学校\",\"info\":\"⾼新⼀中\"}]}]";
alert(typeof stustring); //string
var stuobj={stuid:"1001",stuname:"张三"};
alert(typeof stuobj); //object
json对象的字符串---->json对象[javascript对象]
1.使⽤ JSON.parse() ⽅法将数据转换为 JavaScript 对象。
2.eval("("+str+")");
//json对象的字符串---->json对象[javascript对象]
//var  stustring="[{\"stuid\":\"1001\",\"stuname\":\"张三\",\"stuage\":23,\"stuaddress\":[{\"type\":\"家庭
\",\"info\":\"长安南路\"},{\"type\":\"学校\",\"info\":\"⾼新⼀中\"}]},"+
//            "{\"stuid\":\"1002\",\"stuname\":\"李四\",\"stuage\":24,\"stuaddress\":[{\"type\":\"家庭\",\"info\":\"长安南路\"},{\"type\":\"学校\",\"info\":\"⾼新⼀中\"}]}]";
//alert(typeof stustring); //string
//1.使⽤ JSON.parse() ⽅法将数据转换为 JavaScript 对象。
//var stuobj=JSON.parse(stustring);
//alert(typeof stuobj); //object
//alert(stuobj[1].stuname);
//2.eval("("+str+")");
//var stuobj=eval("("+stustring+")");
//alert(typeof stuobj); //object
//alert(stuobj[0].stuaddress[0].info+","+stuobj[0].stuaddress[1].info);
json对象[javascript对象]--->json对象的字符串
可以使⽤ JSON.stringify() ⽅法将 JavaScript 对象转换为字符串。
//可以使⽤ JSON.stringify() ⽅法将 JavaScript 对象转换为字符串。
var stuobj={stuid:"1001",stuname:"张三"};
//alert(typeof stuobj); //object
var stustring=JSON.stringify(stuobj);
alert(typeof stustring); //string
alert(stustring);

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。