BackboneJS でサブビューからビュー関数を呼び出せるかどうか知りたいです。はいの場合、どのように機能していますか?
メインビューに属する関数「hello」をサブビューから呼び出したい。
たぶん、イベントトリガーの場合...
例:
var MainView = Backbone.View.extend({
initialize: function() {
this.$template = $(template);
this.subview = new SubView();
this.render();
},
render: function() {
this.$el.html(this.$template);
var element = this.$template.attr('id');
this.subview.setElement('#'+element).render();
},
hello: function() {
alert('Hello');
}
});
var SubView = Backbone.View.extend({
initialize: function() {
this.$template = $(template);
this.render();
},
render: function() {
this.$el.html(this.$template);
//Call view function ' hello '
//parentView.hello();
}
});
ありがとう!