admin管理员组文章数量:1345325
I have a view called DashboardView
that instantiates multiple WidgetView
s. Each widget needs to have its own event bindings. So far as I can tell, these bindings get lost when the view is rendered and added to the parent view, i.e.:
class DashboardView extends Backbone.View
constructor: ->
context = @
_.each @collection, (w)->
dv = new app.WidgetView(model: w)
context.$el.append(dv.render())
class WidgetView extends Backbone.View
events:
"click .config" : "config_widget"
render: ->
_.template($("#widget-template").html(), @model)
Doing it this way, the click events on the .config
element of the widget are now lost. Is there a better way of mixing the nested views into the parent while ensuring that the event handlers on the child view are channelled correctly?
One solution I have seen to this problem es in this article. This looks about right, but I'm curious if there is a more elegant way of solving this.
I have a view called DashboardView
that instantiates multiple WidgetView
s. Each widget needs to have its own event bindings. So far as I can tell, these bindings get lost when the view is rendered and added to the parent view, i.e.:
class DashboardView extends Backbone.View
constructor: ->
context = @
_.each @collection, (w)->
dv = new app.WidgetView(model: w)
context.$el.append(dv.render())
class WidgetView extends Backbone.View
events:
"click .config" : "config_widget"
render: ->
_.template($("#widget-template").html(), @model)
Doing it this way, the click events on the .config
element of the widget are now lost. Is there a better way of mixing the nested views into the parent while ensuring that the event handlers on the child view are channelled correctly?
One solution I have seen to this problem es in this article. This looks about right, but I'm curious if there is a more elegant way of solving this.
Share Improve this question edited Mar 3, 2012 at 22:30 mu is too short 435k71 gold badges859 silver badges818 bronze badges asked Mar 3, 2012 at 21:33 picardopicardo 24.9k33 gold badges109 silver badges156 bronze badges2 Answers
Reset to default 10Try this:
class DashboardView extends Backbone.View
constructor: ->
@collection.each ( w ) =>
dv = new app.WidgetView( model: w )
@$el.append dv.render().el // Append widget's @el explicitly
class WidgetView extends Backbone.View
tagName: 'div' // or whatever your view's root element is
template: _.template $( "#widget-template" ).html() // pre-pile template
events:
"click .config": "config_widget"
render: ->
@$el.html @template @model.toJSON() // append template to @el
return this // return view
So, the idea is this:
(1) Inside the WidgetView
's render
method, you populate @el
(the root element of the view) with its model's data via the template. (And notice how I pile the template only once - there is no need to pile the template on each render operation.)
(2) Inside the DashboardView
, you append the widget's root element - @el
- to the DOM.
The thing is that the view's events delegate to its root element - @el
. Therefore, you want to work with the root element explicitly: inside render
, you populate it, and then you append it to the DOM.
Your issue is that delegateEvents
expects a single, non-changing element for your view. Because your render
function creates a new element every time, the bindings made by delegateEvents
are never fired when you click on the element generated by render
.
Luckily the current version of Backbone offers a setElement
method that will reassign your element with the argument you provide, and then it will automatically call delegateEvents
.
本文标签: javascriptEvents in Backbonejs nested viewsStack Overflow
版权声明:本文标题:javascript - Events in Backbone.js nested views - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743768014a2535600.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论