Marionette ItemView how to re-render model on change

余生长醉 提交于 2019-12-20 12:07:15

问题


I'm using Handlebars template engine.
so, I have Model:

Backbone.Model.extend({
        urlRoot: Config.urls.getClient,
        defaults: {
            contract:"",
            contractDate:"",
            companyTitle:"",
            contacts:[],
            tariff: new Tariff(),
            tariffs: [],
            remain:0,
            licenses:0,
            edo:""
        },
        initialize:function(){
            this.fetch();
        }
    });

then Marionette ItemView:

Marionette.ItemView.extend({
        template : templates.client,
        initialize: function () {
            this.model.on('change', this.render, this);
        },
        onRender: function () {
            console.log(this.model.toJSON());
         }      
    });

and then I call everything as:

new View({
    model : new Model({id:id})
        })

and, it's immediately render a view for me and this is cool. But after the model fetched data it's trigger "change", so I see in console serialised model twice, and I see for first time empty model and then filled one.

But, the view is NOT updated.

How I can fix it?

P.S. I understand, that I can call a render method on fetch done callback. But I also need it for further actions, when user will change model.


回答1:


In the View, You can use following code

    modelEvents: {
        'change': 'render'
    }

instead of

   initialize: function () {
        this.model.on('change', this.render, this);
    },
    onRender: function () {
        console.log(this.model.toJSON());
     }



回答2:


Actually, Backbone and Marionette are smart enough to do it.
Problem was in template and data as I found it another question. So, I re-checked everything and got result.



来源:https://stackoverflow.com/questions/16876970/marionette-itemview-how-to-re-render-model-on-change

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!