json 数据格式简单解析

作者:互联网   出处:控件中国网   2014-11-05 19:05:41   阅读:1

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
            });
        }
    });

 

Copyright© 2006-2015 ComponentCN.com all rights reserved.重庆磐岩科技有限公司(控件中国网) 版权所有 渝ICP备12000264号 法律顾问:元炳律师事务所
客服软件
live chat