Top "Ember-data" questions

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

How to use multiple models with a single route in EmberJS / Ember Data?

From reading the docs, it looks like you have to (or should) assign a model to a route like so: …

ember.js ember-data
How to represent arrays within ember-data models?

Is it necessary to use DS.hasMany pointing to a DS.Model when a model contains an array? Even if …

javascript ember.js ember-data
Access store from component

i have a component and when user click on component it add some value to store,i try to use …

ember.js ember-data
Ember.js array as model's property

Cheers! I have some model, and one attribute of it is an array, but for some reasons (I use mongoDB …

javascript ember.js ember-data
Using .findBy() with Ember-data-populated array controller

Background I'm writing some functional tests to test that my router is navigating and loading my models correctly. So far, …

ember.js ember-data qunit
infinite scroll with ember.js (lazy loading)

I have a view where there can be a large number of items for the user to scroll through and …

ember.js lazy-loading infinite-scroll ember-data
How to add objects to a hasMany relationship with ember data

I have these two models: App.Items = DS.Model.extend({ provider: DS.attr('string'), name: DS.attr('string'), description: DS.…

ember.js ember-data
Ember.js & Ember Data: How to create record with hasMany relationship when the parent and child don't exist yet

As seems to be the case with most everything I do with ember-data the simple test case is very simple …

ember.js ember-data
How to reload an ember data record?

I'm using the new router and ember data rev 11. I have a need to force ember-data to re-load data for …

ember.js ember-data
What's the proper way to access parameters from within Ember.Route. setupController?

Ember.Route.model has access to the params variable, but Ember.Route.setupController does not. This is troublesome for me, …

ember.js ember-data ember-router