2

我们收到 JSON 格式的响应,但我们无法获取和打印数据。

var dstore = Ext.getStore('DomesticStore');
dstore.sync();
dstore.load();
console.log(dstore.getData().items);
// this line prints the output but unable to fetch inside array data.
4

1 回答 1

1

我有一个获取 JSON 数据的应用程序。当您获得商店时,请调用 on 方法。然后使用记录数组访问数据。

var Store1 = Ext.getStore('DomesticStore').on('load', function (store, records, successful, operation, eOpts) {   
        if(successful == false){
            console.log("Could not load store. ");
        }
        var e;

        for (var i = 0; i < records.length; i++) {
             e = records[i];
             console.log(e.get('elementname'));
        }
});

这将通过 JSON 数组并获取字段名称的每个值。

我的 JSON 数据看起来像这样

{   
    "countries": [
        {
            "name": "United States",
            "2001": 128500000,
            "2002": 141800000,
            "2003": 160637000,
            "2004": 184819000,
            "2005": 203700000,
            "2006": 229600000,
            "2007": 249300000,
            "2008": 261300000,
            "2009": 274300000,
            "2010": 278900000,
            leaf: true
        }
    ]
}

我使用该代码从记录数组中获取每个国家,然后是每个国家的名称字段。

于 2013-02-08T15:35:55.783 回答