0

我收到一个 json 对象作为来自 Web 服务的响应,其格式类似于:-

      {
         studentData:[
            {
                "history":25,
                 "science":69,
                 "maths":45
            }
           ]
      }

我正在使用以下代码来读取 JSON:-

Ext.define('MyStore.store.dashboard.graphs.Temp', {
extend: 'Ext.data.Store',
 proxy: {
        type: 'ajax',
        url: 'abc.php', 

        headers: {
            'Content-Type': 'application/json'
        },

         reader: {
                type: 'json',
                rootProperty: 'studentData',

                listeners: {

                    exception: function(reader, response, error, eOpts) {
                        console.log('YT reader exception');
                        console.log(error.message, error);
                        console.log(response);
                    }

                }
            }

我可以解析 JSON 响应,使其以以下格式存储吗?

     {
         studentData:[
            {
                "subject":"History",
                 "marks":"25"    
            },
           {
                 "subject":"Maths",
                 "marks":"25"
           }
           ]
      }

我需要在以xfield作为主题和yfield作为标记的图表中显示这些值。是否有一个我可以附加到代理的监听器,以便我可以根据我的要求修改存储结构?

4

2 回答 2

1

您可以transform在阅读器中使用一个函数:

如果设置了转换函数,它将在 readRecords 执行之前被调用。它传递原始(反序列化)数据对象。transform 函数返回一个数据对象,它可以是原始数据对象的修改版本,也可以是全新的数据对象。转换可以是函数,或 Reader 实例上的方法名称,或具有“fn”键和可选“范围”键的对象。

于 2016-05-31T15:06:42.210 回答
1

根据您使用的 ExtJS 版本,您可以在商店加载 JSON 数据之前对其进行更改。

ExtJS 4 - 您可以通过扩展 Ext.data.reader.Reader 类并覆盖 getResponseData(response) 并更改 json 并返回 ResultSet 来创建自己的阅读器类。

ExtJS 5 - 您可以使用 Reader 类的转换功能并可以更改响应数据对象。

    Ext.create('Ext.data.Store', {
    model: 'User',
    proxy: {
        type: 'ajax',
        url : 'users.json',
        reader: {
            type: 'json',
            transform: {
                fn: function(data) {
                    // do some manipulation of the raw data object
                    return data;
                },
        scope: this
            }
        }
    },});
于 2016-06-01T05:05:14.093 回答