迭代ExtJS存储中的记录并过滤特定字段

时间:2012-12-28 15:45:45

标签: javascript arrays extjs

我正在迭代商店中的记录,因为他们是这样进来的:

Ext.create('Ext.data.Store', {
    model: 'Message',
    storeId: 'Staging',
    proxy: {
        type: 'memory',
        reader: {
            type: 'json'
        }
    },
    listeners: {
        add: function(store, records, index, eOpts){
            if (!Ext.data.StoreManager.lookup('Historical').isLoading()) {

                this.each(function(item, index, count) {
                    if(item.notificationType === 'INBOX'){
                        // populate inbox store
                        // increment the unread inbox count
                        console.log('inbox');
                    } else if (item.notificationType === 'NOTIFICATION') {
                        // populate notifications store
                        // increment the unread notification count
                    }
                });

                // no historical data should be held in memory for performance
                this.removeAll();

            }  
        }
    }   
}); 

item.notificationType 属性返回undefined。

我尝试了其他属性,但它们也返回undefined。

当遇到不同的类型时,我需要执行不同的操作,并认为这样做!

因此该项是商店中的记录,其结构中包含json,如下所示:

   {
      "source":"2",
      "target":"1416529",
      "sourceType":"USER",
      "redirectUrl":null,
      "message":"cow's go...",
      "id":606,
      "targetType":"TEAM",
      "messageType":"TIBRR_WALL_MESSAGE",
      "notificationType":"INBOX",
      "sentDate":1356599137173,
      "parameters":null,
      "targetId":"1416529",
      "sourceId":"2",
      "dispatched":true,
      "read":false,
      "readDate":null,
      "dispatchedDate":1356599137377
   }

1 个答案:

答案 0 :(得分:1)

您尚未发布模型定义,因此我假设您的模型中有一个名为“notificationType”的字段。

在这种情况下,您将需要使用get方法:

item.get('notificationType');