我已经阅读了这个和这个问题,但它没有帮助。我以这种方式调用了 fetchRelated:
initialize: function(){
Artist.fetchRelated(
'albums',
{success: this.render}
);
},
render: function(){
this.model.get('albums').each(function(album){
console.log(album);
console.log(album.toJSON());
console.log(album.get('title'));
});
$(this.el).html(this.template({
current_user: App.current_user.toJSON(),
artist: this.model.toJSON(),
albums: this.model.get('albums'),
}));
return this;
},
第console.log(album)
一个正确返回具有所有属性的有效专辑模型,但下一次使用 toJSON 函数调用 log 却没有。它只是返回 id。因此,当我尝试在下一个日志中检索专辑的标题时,它返回未定义。
另外它告诉我我不能在模板调用中调用 toJSON() 给艺术家,因为它是未定义的,尽管我只是用它来获取专辑......
我确定我的问题在于我仍然不习惯的回调地狱,但我不知道如何解决它。
编辑1:
对于集合中的每个专辑,console.log(album) 响应是这样的:
_changing: false
_events: Object
_isInitialized: true
_pending: false
_permitsUsed: 0
_previousAttributes: Object
_queue: Backbone.BlockingQueue
_relations: Array[2]
attributes: Object
artist: child
description: "asdasd"
id: 1
image: ""
release_year: 1950
resource_uri: "/albums/1"
songs: child
title: "asdasd"
changed: Object
cid: "c8"
collection: child
id: 1
__proto__: Surrogate
编辑2:
我已经尝试更改骨干关系提供的 toJSON 函数,但我不明白为什么这样做可以解决我的问题,因为我有其他模型并且这个函数可以正常工作而没有任何覆盖。
我尝试_.clone(this.attributes)
从我自己的 toJSON 函数返回,因为console.log(this.attributes)
它给出了正确的响应,但由于某种原因它返回相同。
artist: Object
id: 1
songs: Array[0]
__proto__: Object
这是我的关系的样子。
relations: [{
type: Backbone.HasMany,
key: 'songs',
relatedModel: SongModel,
collectionType: Songs,
reverseRelation:{
key: 'album'
}
}],