You must tell your store to use DS.RESTAdapter , and this handles communication with your server using AJAX calls, see the basic example here
You can get a general overview of how the RESTAdapter used in tests .
App = Ember.Application.create({}); App.store = DS.Store.create({ revision: 3, adapter: DS.RESTAdapter.create({ ajax: function(url, type, hash) { console.log(arguments); } }) }); App.Person = DS.Model.extend({ }); App.Person.createRecord({ });
source share