如何获取和过滤数据

时间:2013-01-28 10:59:03

标签: backbone.js backbone-views

在我的主干功能中,一切正常,甚至是过滤器。但问题是,每当我点击过滤器类型并切换到另一种过滤器类型时,它就会从现有的过滤数据中过滤,而不是从服务器和过滤器中获取新的...

如果我通过我的过滤器功能添加了fetch调用,它会获取应用所有数据,而不会过滤...我该如何修复它??

我的代码:

    $(document).ready(function(){
    var school = {};

    school.model = Backbone.Model.extend({
        defaults:{
            name:'no name',
            age:'no age'
        }
    });

    school.collect = Backbone.Collection.extend({
        model:school.model,
        url:'js/school.json',
        initialize:function(){
            this.sortVar = "name"
        }
    });

    school.view = Backbone.View.extend({
        tagName:'div',
        className:'member',
        template:$('#newTemp').html(),
        render:function(){
            var temp = _.template(this.template);
            this.$el.html(temp(this.model.toJSON()));
            return this;
        }
    });

    school.views = Backbone.View.extend({
        el:$('#content'),
        events:{
            'click #newData' : 'newArrival',
            'click #showName' : 'showByName',
            'click #showAge' : 'showByAge'
        },
        initialize:function(){
            _.bindAll(this);
            this.collection = new school.collect;
            this.collection.bind('reset', this.render);
            this.collection.fetch();
            this.childViews = [];
        },
        newArrival:function(){
            this.collection.fetch(); //it works fine, i use this for update
        },
        showByName:function(){
// this.collection.fetch(); //but i can't do this, it removes filtered data..
            this.sortVar = 'name';
            var filterType = _.filter(this.collection.models, function(item){
                return item.get('name') != '';
            })
            this.collection.reset(filterType); //resets without fetching (filtering  from existing datas..)
        },
        showByAge:function(){
// this.collection.fetch(); //but i can't do this, it removes filtered data..
            this.sortVar = 'age';
            var filterType = _.filter(this.collection.models,function(item){
                return item.get('age') != 0;
            })
            this.collection.reset(filterType); //resets without fetching (filtering from existing datas..)
        },
        render:function(){

            _.each(this.childViews, function(old){
                old.remove();    
            });

            this.childViews = [];

            var that = this;
            _.each(this.collection.models, function(item){
                that.renderItem(item);    
            });
        },
        renderItem:function(item){
            var newItem = new school.view({model:item});
            this.$el.append(newItem.render().el);
            this.childViews.push(newItem);
        }
    });

    var newSchool = new school.views;
    });

事先感谢,我还有另外两种方法可以添加,即在显示数据时对名称和年龄进行排序。

1 个答案:

答案 0 :(得分:6)

这对我有用..谢谢大家。

showByAge:function(){
        var that = this;
        this.sortVar = 'age';
        this.collection.fetch()
        .done(function(){ // i am proceeding after i finish the fetch!
            var filterType = _.filter(that.collection.models,function(item){
                return item.get(that.sortVar) != 0;
            })
            that.collection.reset(filterType);
        })
    },