Top "Ember-data" questions

ember-data is a data persistence extension for the Ember.

How to make embedded hasMany relationships work with ember data

I can't get embedded hasMany to work correctly with ember data. I have something like this App.Post = DS.Model.…

javascript ember.js ember-data
How to get Ember Data's "store" from anywhere in the application so that I can do store.find()?

With the recent update, I know that in routers and controllers, I can easily just do this.store.find('model'). …

ember.js ember-data
How to run action in Ember Controller afterRender

I am new to ember framework. I just want to execute a function that is defined inside the actions hook …

ember.js ember-data ember-cli
EmberJS: The best way to reload controller's model based on another property?

What is the best way to reload model for a current controller based on another property? For example: I have …

javascript ember.js ember-data
Handling errors with the (now default) Ember Data JSON-API adapter

I am using Ember 1.13.7 and Ember Data 1.13.8, which by default use the JSON-API standard to format the payloads sent to …

ember.js ember-data ember-cli json-api
How to manually set an object state to clean (saved) using ember-data

Explanation: I'm using ember-data for a project of mine and I have a question that revolves around the possibility of …

ember.js ember-data
Ember component sendAction() not working

i have been struggling with this for the past few hours, i am making an ember application for creating an …

javascript ember.js ember-data
How should errors be handled when using the Ember.js Data RESTAdapter?

ember-data.js: https://github.com/emberjs/data/tree/0396411e39df96c8506de3182c81414c1d0eb981 In short, when there …

ember.js ember-data
Conventions required of RESTful JSON API to be usable with Ember

In the Ember Models Introduction, it is mentioned: Without any configuration, Ember Data can load and save records and their …

ember.js ember-data
Manually remove record from ember data store

I am using ember and ember data in my application . How can we remove manually a record from the store …

ember.js ember-data