1

我正在获取一些记录,并使用如下所示的过滤器属性;

store = Ext.getStore('PEOPLE');
store.on('load', function() {
    store.filter({
        filterFn: function(f) {
            return f.get('Name') == "SAM"; 
        }
    });
});
store .load();

上面的代码将过滤所有具有 name 的 Names SAM。但是,我希望它只返回 1 个名称(返回 SAM(一次))。

例如,在数据库中,我们使用关键字DISTINCT仅获取 1 条记录(如果有多条记录)。我怎么能在我的场景中做到这一点?

4

1 回答 1

5

这可能是您正在寻找的吗?

store = Ext.getStore('PEOPLE');
store.on('load', function() {
    store.filter({
        filterFn: function(f) {
            return f.get('Name') == "SAM"; 
        }
    });
    if(store.getTotalCount() > 1)
        store.remove(store.getRange(1));
});
store.load();
于 2012-09-06T20:14:02.167 回答