最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Updating a collection using fetch with backbone - Stack Overflow

programmeradmin1浏览0评论

Based on the official documentation, when I do something like this:

collection.fetch({update: true, remove: false})

I get an "add" event for every new model, and a "change" event for every changed existing model, without removing anything.

Why if I'm calling an static source of data (the url of the collection always return the same json) an add event is called for each item received?

Here some code (I'm not rendering anything, I'm just debugging):

<!doctype html>
<html>
  <head>
    <title>Example</title>
  </head>
  <body>
    <a href="#refresh">Refresh</a>
    <script src="js/jquery-1.8.3.min.js"></script>
    <script src="js/underscore-min.js"></script>
    <script src="js/backbone-min.js"></script>
    <script src="js/main.js"></script>
  </body>
</html>

Heres the JS

(function($){
    //Twitter Model
    ModelsTwitt = Backbone.Model.extend({});
    //Twitter Collection
    CollectionsTwitts = Backbone.Collection.extend({
        model:ModelsTwitt,
        initialize:function(){
            console.log('Twitter App Started');
        },
        url:'data/195.json'
    });
    //Twitts View
    ViewsTwitts = Backbone.View.extend({
        el:$('#twitter-list'),
        initialize:function(){
            _.bindAll(this, 'render');
            this.collection.bind('reset',this.render);
            this.collection.bind('add',this.add);
        },
        render:function(){
            console.log("This is the collection",this.collection);
        },
        add:function(model){
            console.log("add event called",model);  
        }
    });
    //Twitter Router
    Router = Backbone.Router.extend({
        routes:{
            '':'defaultRoute',//Default list twitts route
            'refresh':'refreshView'
        },
        defaultRoute:function(){
            this.twitts = new CollectionsTwitts();
            new ViewsTwitts({collection:this.twitts});
            this.twitts.fetch();
        },
        refreshView:function(){
            this.twitts.fetch({update:true,remove:false});
        }
    });
    var appRouter = new Router();
    Backbone.history.start();
})(jQuery);

Basically, I fetch the collection using the defaultroute, it is fetched properly with all the models and attributes.

And when I click on the refresh link, I call refreshView, which basically tries to update the collection with new models. What I don't understand is why if the response is the same, all the models of the collection are detected as new, triggering an add?

Heres a functional link: open the console and you will see how the add events are called when you click on refresh even when the collection is the same.

Thanks for your help.

Based on the official documentation, when I do something like this:

collection.fetch({update: true, remove: false})

I get an "add" event for every new model, and a "change" event for every changed existing model, without removing anything.

Why if I'm calling an static source of data (the url of the collection always return the same json) an add event is called for each item received?

Here some code (I'm not rendering anything, I'm just debugging):

<!doctype html>
<html>
  <head>
    <title>Example</title>
  </head>
  <body>
    <a href="#refresh">Refresh</a>
    <script src="js/jquery-1.8.3.min.js"></script>
    <script src="js/underscore-min.js"></script>
    <script src="js/backbone-min.js"></script>
    <script src="js/main.js"></script>
  </body>
</html>

Heres the JS

(function($){
    //Twitter Model
    ModelsTwitt = Backbone.Model.extend({});
    //Twitter Collection
    CollectionsTwitts = Backbone.Collection.extend({
        model:ModelsTwitt,
        initialize:function(){
            console.log('Twitter App Started');
        },
        url:'data/195.json'
    });
    //Twitts View
    ViewsTwitts = Backbone.View.extend({
        el:$('#twitter-list'),
        initialize:function(){
            _.bindAll(this, 'render');
            this.collection.bind('reset',this.render);
            this.collection.bind('add',this.add);
        },
        render:function(){
            console.log("This is the collection",this.collection);
        },
        add:function(model){
            console.log("add event called",model);  
        }
    });
    //Twitter Router
    Router = Backbone.Router.extend({
        routes:{
            '':'defaultRoute',//Default list twitts route
            'refresh':'refreshView'
        },
        defaultRoute:function(){
            this.twitts = new CollectionsTwitts();
            new ViewsTwitts({collection:this.twitts});
            this.twitts.fetch();
        },
        refreshView:function(){
            this.twitts.fetch({update:true,remove:false});
        }
    });
    var appRouter = new Router();
    Backbone.history.start();
})(jQuery);

Basically, I fetch the collection using the defaultroute, it is fetched properly with all the models and attributes.

And when I click on the refresh link, I call refreshView, which basically tries to update the collection with new models. What I don't understand is why if the response is the same, all the models of the collection are detected as new, triggering an add?

Heres a functional link: open the console and you will see how the add events are called when you click on refresh even when the collection is the same.

Thanks for your help.

Share Improve this question edited Feb 12, 2013 at 2:26 DiegoVargasg asked Feb 12, 2013 at 2:13 DiegoVargasgDiegoVargasg 1652 silver badges7 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

My guess would be that your models don't have an idAttribute (doc). The default key Backbone looks for is id and your JSON entries don't have one so it can't tell which models are already there.

Try changing your model to this (or another key if this one isn't unique):

ModelsTwitt = Backbone.Model.extend({
  idAttribute: 'id_event'
});
发布评论

评论列表(0)

  1. 暂无评论