1

我有以下代码,但我很难让我的视图呈现模板而不是我的模型。如果我通过我的模型渲染车把模板但想将我的代码分离到视图中,这一切都很好。

var DataModel = Backbone.Model.extend({
    initialize: function () {
        $.getJSON('js/data.json',function(data){
            $('.one-wrapper').append(Handlebars.compile($('#one-template').html())(data));
            $('.one-asset-loader').fadeOut('slow');
        });
    },

    defaults : function () {

    },

});

var StructureView = Backbone.View.extend ({
    initialize: function () {
    }
});

var structureView = new StructureView({model: new DataModel()});
4

1 回答 1

2

您可以使用 访问视图内的模型this.model

您的代码应类似于:

var StructureView = Backbone.View.extend ({
    initialize: function () {
        _.bindAll(this);
        this.render();
        this.model.on('change',this.render);
    },
    render: function() {
        $('.one-wrapper').empty().append(Handlebars.compile($('#one-template').html())( this.model.toJSON() ));
    }
});

假设您的模型实际上包含数据,这将起作用。为此,您需要使用model.urland model.fetch()(not $.getJSON)

于 2012-11-12T14:53:46.320 回答