本帖最后由 zhzxlc_06 于 2013-07-05 17:27:22 编辑

解决方案 »

  1.   

    e["dataTypeList"][0]["archiveinterval"]行不行?
      

  2.   

    callback : function(options, success, response) {
        var e = Ext.util.JSON.decode(response.responseText);
        console.log(e.dataTypeList[0].interval); //如果数据量大的话,要用for循环输出
    }
    另外就是你用的几版本的Ext,我用4.2。4.2中没有Ext.util.JSON类,要用Ext.JSON
      

  3.   

    callback : function(options, success, response) {
        var e = Ext.util.JSON.decode(response.responseText);
        console.log(e.dataTypeList[0].interval); //如果数据量大的话,要用for循环输出
    }代码弄坏了,再发一遍给你
      

  4.   

    ++楼主还是看下json如何操作。。