ember-data fixtureAdapter with embedded hasMany
问题 I've been at this for a couple hours, fiddling with a number of different combinations to get this working. LO.List = DS.Model.extend({ name: DS.attr('string'), listItems: DS.hasMany('LO.ListItem', { embedded: true }) }); var lists = LO.store.findAll(LO.List), firstList = lists.objectAt(0), listItems = firstList.get('listItems'), firstListItemId = listItems.objectAt(0).get('id'); console.log(firstListItemId) // [object Object] http://jsfiddle.net/pjmorse/65eRS/ It seems that the 'embedded'