App = Ember.Application.create(); App.Router.map(function() { this.route('foo'); }); App.ApplicationAdapter = DS.FixtureAdapter; App.Foos = DS.Model.extend({ name: DS.attr() }); App.Foos.FIXTURES = [ { id: 1, name: "alpha" }, { id: 2, name: "gamma" } ]; App.IndexRoute = Ember.Route.extend({ model: function() { return this.store.find('foos'); } }); App.ApplicationController = Ember.ArrayController.extend({ actions: { xxx: function (params) { this.store.createRecord('foos', { name: params }); } } }); App.IndexController = Ember.ArrayController.extend({ actions: { xxx: function (params) { console.log(params); } } });