为什么我应该绑定视图初始化内的渲染事件?
我不明白为什么我应该在视图初始化内绑定渲染?
例如:
_bindAll(this, "render") ??
I don't understand why should I bind on render inside view Initialize?
example:
_bindAll(this, "render") ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不必这样做,但如果您的渲染是基于事件触发的,您将希望它在您的视图(this)的上下文中运行。如果您有这样的事情:
更改事件将在模型的上下文中运行,但您希望渲染调用针对视图运行。
为了简化所有这些绑定,您可以使用 _.bindAll 并列出您可能从视图外部调用的所有方法。你应该知道 Backbone 会自动绑定用于 UI 事件的回调:
You do not have to, but if your render is triggered based on an event, you will want it to run within the context of your view (this). If you have something like this:
The change event will be run within the context of the model, but you want the render call to run against the view.
To simplify all this binding, you can use _.bindAll and list all the methods you might call from outside your views. You should know that Backbone is auto binding the callbacks used for UI events: