EmberJS Data hasMany sideloading with ActiveModelSerializers
问题 I'm using Ember Data canary build: 1.0.0-beta.8+canary.267214b9 together with a rails back-end and ActiveModelSerializer . My configuration on ember side looks like this: App.ApplicationSerializer = DS.ActiveModelSerializer.extend() App.ApplicationAdapter = DS.ActiveModelAdapter.extend namespace: "api/v1" App.Authentication = DS.Model.extend provider: DS.attr('string') user: DS.belongsTo('user') App.User = DS.Model.extend username: DS.attr('string') email: DS.attr('string') authentications: