json 数据格式简单解析
1,json 数据格式
后台程序返回字符串
{ ’message': 'Hello word'}
前台这样解析
var Dictionary=eval("(" + data + ")");
后台程序返回字符串
({ 'message': 'Hello word'})
前台这样解析
var Dictionary=eval( data);
$.ajax({
url: "GetJosnString",
type: "post",
datatype:"json",
success: function(data) {
var msg = eval(data);
alert(msg.message); //输出结果 Hello word
}
});
2.each 循环对象json
后台定义字符串
({ 'message': 'Hello word','Msg': 'Hello word'})
( {'items':[{ 'message': 'Hello word','Msg': 'Hello word'}]})
$.ajax({
url: "GetJosneach",
type: "post",
datatype: "json",
success: function(data) {
var datas = eval(data);
/***********第一中读取字典类型***************
$.each(datas , function(key, value) {
alert(key + ":" + value); //message:Hello word
});
*************************/
//第二中解析字符串的方法
$.each(datas .items, function(key, value) {
alert(key + ":" + value.Msg); //0:Hello word 数值中第一个元素和value
});
}
});