背景:
我正在对使用带有 Handlebars 的主干.js 作为模板引擎的应用程序进行更改。在更改事件触发后,我需要创建附加到当前 DOM 结构的 html,这基本上只是模型中包含的信息的吐出。这种变化需要适应已经建立的应用程序结构。
问题:
我创建了一个使用 Handlebars 模板和模型来创建 html 的新视图。然后我实例化该视图并调用渲染函数并使用 JQuery 附加输出。我注意到的是,当呈现 html 时,传入的模型是因为 $el 上的属性而不是填写模板(就像我认为应该的那样)。
查看我正在更改:
$.hart.TestView = Backbone.View.extend({
tagName: "li",
template: Handlebars.compile($('#templateOne').html()),
initialize: function () {
this.model.on('change', function () {
this.createMoreInfoHtml();
}, this);
},
selectSomething: function () {
this.$el.removeClass('policies');
this.createMoreInfoHtml(); //function created for new view stuff
},
createMoreInfoHtml: function () {
var id = this.$el.attr('data-id', this.model.get("ID"));
$('.info').each(function () {
if ($(this).parent().attr('data-id') == id
$(this).remove();
});
var view = new $.hart.NewView(this.model, Handlebars.compile($("#NewTemplate").html()));
$('h1', this.$el).after(view.render().el);
},
render: function () {
... //render logic
}
});
我创建的视图:
$.hart.NewView = Backbone.View.extend({
initialize: function (model, template) {
this.model = model;
this.template = template;
},
render: function () {
this.$el.html(this.template({ info: this.model }));
this.$el.addClass('.info');
return this;
}
});
Json 是模型:
{
"PetName":"Asdfasdf",
"DateOfBirth":"3/11/2011 12:00:00 AM",
"IsSpayNeutered":false,
"Sex":"F",
"SpeciesID":2,
"ID":"ac8a42d2-7fa7-e211-8ef8-000c2964b571"
}
模板
<script id="NewTemplate" type="text/html">
<span>Pet Name: </span>
<span>{{this.PetName}}</span>
</script>
所以现在的问题是:我做错了什么?为什么模型的属性被创建为 $el 上的属性而不是填充模板?有人可以指导我如何获得我正在寻找的结果吗?