Ember-Data Fixture Adapter
问题 Is there a commit method for the fixture adapter? What does it do? As my understanding goes store.commit() puts an API call when used with REST adapter. Can I use isLoaded property with fixture adapter? Basically I have 2 records in my controller called x and y and a property content that has many records of y type. Coffee code below: someMethod: (-> content.removeObject(y) ).('x.isLoaded') anotherMethod: -> //modify x Application.store.commit() When I call anotherMethod it updates x and runs