var FriendsCollection = Backbone.Collection.extend({
model: FriendModel,
url: '/friends'
});
var friends_collection = new FriendsCollection();
在视图的模板中,我必须像这样访问从 REST 接收到的数据的名字
<% _.each(friends, function(friend) { %>
<div style="background-color: #fff">
<%= friend.friends[0].Friend.first_name %>
</div>
<% }); %>
无论如何,当friends_collection .fetch()
被调用时,它实际上不是添加一个 json 对象,而是添加附加到集合的模型的实例?