내 사용자 개체와 내 usergame 개체 사이에 관계 설정이 있습니다. 관계가 올바르게 설정되어있는 것처럼 보입니다. 사용자 개체를 통해 usergames에 액세스 할 수 있습니다.백본 관계형 업데이트 없음
그러나 새 usergame 개체를 만들면 사용자 개체가 업데이트되지 않습니다.
누군가 내게 해결책을 제공 할 수 있습니까?
class App.Models.User extends Backbone.RelationalModel
urlRoot: '/user'
relations: [
type: Backbone.HasMany
key: 'user_games'
relatedModel: 'App.Models.UserGame'
includeInJSON: true
collectionType: 'App.Collections.UserGames'
reverseRelation:
key: 'user'
]