Sencha touch 2 filterby()不更新记录

时间:2012-11-19 22:30:09

标签: touch sencha-touch-2

我在Tabbed Panel应用程序的一个页面上有一个嵌套列表,该应用程序从“offices.json”中提取数据

我希望能够在用户点击工具栏按钮时过滤此列表。但是我的filterBy()函数不会更新我可以看到的商店和办公室列表,即使我可以在控制台中看到它正在迭代记录并找到匹配项。我究竟做错了什么? (是的,我在filterBy之前和之后尝试过s.load()都无济于事!)

toolbar:{                        
   items:[{
           text: 'Near you',
           id: 'btnNearYou',
           xtype: 'button',
           handler: function() {
             s = Ext.StoreMgr.get('offices');
             s._proxy._url = 'officesFLAT.json';        
             console.log("trying to filter");
             s.filterBy(function(record) {
              var search = new RegExp("Altrincham", 'i'); 
              if(record.get('text').match(search)){
               console.log("did Match");
               return true;
              }else {
               console.log("didnt Match");
               return false;
             }
           });
           s.load();
          }                            
   }]

对于记录我是这样定义我的商店:

store: {
    type: 'tree',
    model: 'ListItem',
    id: 'offices',
    defaultRootProperty: 'items',
    proxy: {
        type: 'ajax',
        root: {},
        url: 'offices.json',
        reader: {
            type: 'json',
            rootProperty: 'items'
        }
    }
}

1 个答案:

答案 0 :(得分:2)

  1. 无需每次都重新创建正则表达式,将其缓存在外面。

  2. 您可以大量简化代码(见下文)。

  3. 为什么你之后直接调用load?这将把它发送到服务器,它将只检索相同的数据集。

  4. toolbar: {
        items: [{
            text: 'Near you',
            id: 'btnNearYou',
            xtype: 'button',
            handler: function() {
                s = Ext.StoreMgr.get('offices');
                s._proxy._url = 'officesFLAT.json';
                var search = /Altrincham/i;
                s.filterBy(function(record) {
                    return !!record.get('text').match(search);
                });
            }
        }]
    }