Reputation: 1744
Cheers! I have some model, and one attribute of it is an array, but for some reasons (I use mongoDB on the server and it's problem with embedded models and ember-data) I can't do somthing like this:
App.Foo = DS.Model.extend({
...
numbers: DS.hasMany('App.Bar')
)};
App.Bar = DS.Model.extend({
...
number: DS.attr('number')
});
I need something like this:
App.Bar = DS.Model.extend({
numbers: DS.attr('array')
});
But there is no array type of attributes in ember-data, how to be?
Upvotes: 19
Views: 21131
Reputation: 157
anArrayAttr: DS.attr('raw', { defaultValue: function() { return []; } })
From my awesome colleague 'Theron Humiston'
Upvotes: 2
Reputation: 8875
I found that actually you can have array properties out of the box by just not specifying a type.
#coffeescript
AskuWhiteLabel.SomeModel = DS.Model.extend
some_ids: DS.attr()
I'm using this, and when I do this
myModel.set('some_ids', [1,2,3])
myModel.save()
The payload to the server is indeed my array as is.
Upvotes: 34
Reputation: 1744
For those, who have the same problem as me: check out this answer:
Or you can pass embedded models with hasMany relation and set custom primary key for embedded model in the adapter ('number' in my case). Look at this tests:
Upvotes: 3