私はこのコードを持っています - テンプレートでレンダリングされる 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');
});
Candidate.template:
<div>
<h3>Name : <%= candidate.name %> </h3>
...
...
</div>