我仍在学习 Backbone,但我的理解是它应该在这种情况下自动处理更新视图。我的主索引视图是一个表,其中每一行都是单个模型的视图。
索引视图:
Tracker.Views.Friends ||= {}
class Tracker.Views.Friends.IndexView extends Backbone.View
template: JST["backbone/templates/friends/index"]
initialize: () ->
_.bindAll(this, 'addOne', 'addAll', 'render');
@options.friends.bind('reset', this.addAll);
addAll: () ->
@options.friends.each(this.addOne)
addOne: (chaser) ->
view = new Tracker.Views.Friends.FriendView({model : friend})
this.$("tbody").append(view.render().el)
render: ->
$(this.el).html(this.template(friends: this.options.friends.toJSON() ))
@addAll()
return this
型号和收藏:
class Tracker.Models.Friend extends Backbone.Model
paramRoot: 'friend'
defaults:
name: null
status: null
class Tracker.Collections.FriendsCollection extends Backbone.Collection
model: Tracker.Models.Friend
url: '/friends.json'
网友观点:
Tracker.Views.Friends ||= {}
class Tracker.Views.Friends.FriendView extends Backbone.View
template: JST["backbone/templates/friends/friend"]
events:
"click .destroy" : "destroy"
tagName: "tr"
destroy: () ->
@options.model.destroy()
this.remove()
return false
render: ->
$(this.el).html(this.template(this.options.model.toJSON() ))
return this
朋友.jst.ejs:
<td><a href="javascript:void(0);" data-friendid="<%= id %>" class="friend-link"><%= name %></a></td>
<td><span class="label"><%= status %></span></td>
index.jst.ejs:
<table id="friends_table" class="table table-striped table-bordered">
<tr>
<td>Name</td>
<td>Status</td>
</tr>
</table>
我最初使用重置实例化并填充集合,如下所示:
friends = new Tracker.Collections.FriendsCollection()
friends.reset data
然后我实例化我的索引视图并将它传递给我的集合:
view = new Tracker.Views.Friends.IndexView(friends: friends)
这一切都很好,并显示了一个表格,其中包含来自 Web 服务器的行。但是,我想定期更新好友列表以及服务器上发生的更改,因此我使用 collection.fetch 方法如下(其中 updateStatus 与到目前为止描述的代码完全无关):
window.setInterval (->
friends.fetch success: updateStatus
), 10000
数据从 fetch 返回并正确解析,但是它将行附加到我的表中,而不是更新现有行。我怎样才能按照我的意图进行这项工作?