ember-dataで実装されているテストによれば、hasMany関係から子レコードを要求すると、ストアは子リソースにGET get URLを作成し、必要な子リソースのIDを送信します。emberデータでparentRecord idを取得する方法
test("finding many people by a list of IDs", function() {
store.load(Group, { id: 1, people: [ 1, 2, 3 ] });
var group = store.find(Group, 1);
equal(ajaxUrl, undefined, "no Ajax calls have been made yet");
var people = get(group, 'people');
equal(get(people, 'length'), 3, "there are three people in the association already");
people.forEach(function(person) {
equal(get(person, 'isLoaded'), false, "the person is being loaded");
});
expectUrl("/people");
expectType("GET");
expectData({ ids: [ 1, 2, 3 ] });
親レコード(グループ)のIDを送信するにはどうすればよいですか?私のサーバは、埋め込まれたレコードを取得するためにこのidを必要とします。
expectData({groud_id: the_group_id, ids: [1,2,3] })