How do I get Rails to generate JSON in the correct format for ember.js?
问题 In the Ember guide on models http://emberjs.com/guides/models/the-rest-adapter/#toc_relationships I see that associations should be specified as an array of ids: { "post": { "comments": [1, 2, 3] } } I'm having trouble working out how to generate the array of ids in the rails controller. While I can :include the associated models, they are included as an array of hashes: {"name":"Jane's Place","rooms":[{"id":1},{"id":2},{"id":3}]} Any ideas on how one would get the array form? 回答1: Ember