只是我尝试做的一件事会真正简化我现在的生活。
我怎样才能做到这一点 :
这是我在应用文件中的视图
window.ArtView = Backbone.View.extend({
template:_.template($('#art').html()),
render:function (eventName) {
var output="blablbla";
$(this.el).html(this.template({"output":output}));
return this;
}
});
...
// function that I would like to call
function callFunction(){
console.log('it works!');
}
index.html 中的模板
<script type="text/tempate" id="art">
<div data-role="header" class="header" data-position="fixed">
<a href="#" data-icon="back" class="back ui-btn-left">Back</a>
</div>
<div data-role="content" class="content">
callFunction();
<% console.log(output) %>
</div>
</script>
如何在我的模板或类似的东西中调用 callFunction() ?
任何想法 ?
谢谢 !