我有这段代码——我只需要在将在模板中呈现的 DOM 元素上添加一个类。但是,这不起作用!
this.get('#/:post_id', function(context){
context.app.swap('');
this.load('/post/' + this.params['post_id'])
.then(function(candidates){
$.each(candidates[1], function(i, candidate){
context.render("static/templates/candidate.template", {candidate:candidate})
.appendTo(context.$element());
});
})
.then(function(){
$('h3').addClass('custom_class');
});
候选模板:
<div>
<h3>Name : <%= candidate.name %> </h3>
...
...
</div>