ember-data is a data persistence extension for the Ember.js framework.
19
votes
3answers
4k views
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 I'd like to implement infinite scrolling to enable progressive loading of the content.
It looks like ...
19
votes
3answers
2k views
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 is an error, I want to display error messages in the view, and then the user can 1) ...
16
votes
2answers
580 views
Accessing meta information passed in a json server response
I am using the Ember-Data Rest-Adapter and the JSON returned from my server looks basically like the one in the Active Model Serializers Documentation
{
"meta": { "total": 10 },
"posts": [
{ ...
14
votes
3answers
743 views
What can you do with Ember Data Models when in the error state?
I'm struggling to understand the workflow that would be used in the following scenario:
A user creates a model, let's call it Product. We present them with a form to fill in. The save errors for some ...
14
votes
3answers
5k views
Sample app using Ember Data and Rails backend [closed]
Any sample app using ember data to recommend ? Ideally with Rails backend and models associations.
12
votes
5answers
2k views
What's the standard pattern for ember-data validations? (invalid state, becameInvalid…)
I've kinda been struggling with this for some time; let's see if somebody can help me out.
Although it's not explicitly said in the Readme, ember-data provides somewhat validations support. You can ...
10
votes
4answers
902 views
Could someone point me to an ember.js project that uses the latest routing system? Bonus points if it uses ember-data as well
I'm making my first project with ember.js, and so far haven't been able to find any example projects that use the new routing system. All the examples from the ember docs use the old routing.
...
9
votes
2answers
1k views
Where do I specify the pluralization of a model in Ember Data?
I have a model type that ends in -y: Security
How do I tell Ember Data to use /securities instead of /securitys to find resources for this?
9
votes
3answers
5k views
Ember-Data: How do “mappings” work
I'm currently trying to put something together with ember + emberdata + router + asp.net web api. Most of it seem to work, however I stuck in an error message I get when ember-data tries to findAll ...
9
votes
1answer
2k views
Accessing controllers from other controllers
I am building a project management app using ember.js-pre3 ember-data revision 11.
How do I initialize a couple of controllers and make them available globally. For example I have a currentUser ...
9
votes
1answer
1k views
ember-data: Loading hasMany association on demand
(Updated for ember-data API Rev 11...)
TL;DR
What is the right way to use DS.Adapter.findAssociation(...)DS.Adapter.findHasMany(...) to load hasMany associations on demand? Especially, once you load ...
9
votes
3answers
980 views
creating a record with Ember.js & Ember-data & Rails and handling list of records
I'm building an app which has layout like below.
I want to create a new post so I pressed 'new post button' and it took me to 'posts/new' route.
My PostsNewRoute is like below (I followed the ...
9
votes
1answer
2k views
return single record with ember-data find() and multiple params
I'm trying to do a find (with ember-data) on other params than the id, two params actually.
but all i get back is:
"Uncaught Error: assertion failed: Your server returned a hash with the key ...
8
votes
2answers
1k views
Ember-Data recursive hasMany association
Has anyone used ember-data to model a tree of data?
I would assume it would be something like:
Node = DS.Model.extend({
children: DS.hasMany(Node),
parent: DS.belongsTo(Node)
});
...
8
votes
1answer
1k views
Can I define a default value for ember-data model attributes?
When I define an attribute for a model in ember-data, can I specify a default value?
The ember-data model definition suggests attributes are defined like this:
attributeName: DS.attr('number')
...
8
votes
1answer
534 views
Caching remote data in Local Storage with EmberData
I have a question about loading and caching remote objects with Ember. I'm developing an Ember app that uses server-side storage through a REST API. Some of the fetched data is rarely changing, so ...
8
votes
2answers
1k views
List not updated after deleteRecord
I have an ArrayController whose content is defined in a route like that:
App.UsersRoute = Ember.Route.extend({
model: function() {
return App.User.find();
},
setupController: ...
7
votes
2answers
2k views
How to make embedded hasMany relationships work with ember data
I can't get embedded hasMany work correctly with ember data.
I have something like this
App.Post = DS.Model.extend({
comments: DS.hasMany('App.Comment')
});
App.Comment = DS.Model.extend({
...
7
votes
1answer
1k views
Setup a callback after a transaction has committed
I'm trying to achieve something that I guess has a simple answer but somehow I can't find it reading the source code of ember-data.
I would like to trigger an action after a particular set of ...
7
votes
1answer
812 views
Ember Data: Saving a model with an association in one request
I have two ember models with a relationship like this
App.Foo = DS.Model.extend
bar: DS.belongsTo("App.Bar", embedded: true)
App.Bar = DS.Model.extend
primaryKey: "blah"
blah: DS.attr ...
7
votes
2answers
317 views
Ember-data in a non-RESTful environment
I would like to use ember-data in a project I am building, but the API I am working with does not follow REST conventions.
For example, all the HTTP requests are POST and the naming conventions of ...
7
votes
1answer
246 views
Sub resources with emberjs + ember-data
So I'm having (what i think is) a general problem w/ Ember-data. I'm wondering how to properly customize the adapter to adapt to the following situation.
Pretend I have two objects: Post and Tag
...
7
votes
1answer
703 views
The right pattern for returning pagination data with the ember-data RESTAdapter?
I'm displaying a list of articles in a page that are fetched using the Ember Data RESTAdapter. I need to implement a bootstrap'esque paginator (see: ...
6
votes
1answer
2k views
What is the difference between Adapter and Fixture Adapter and REST Adapter, in ember-data?
What is the difference between Adapter and Fixture Adapter and REST Adapter, and when to use each one?
6
votes
1answer
1k views
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 a record from the server. Using App.MyRecord.find(2) in setInterval function loads the data from ...
6
votes
1answer
495 views
failed to get embedded's object property using ember.js with ember-data
I'm new to ember, and try to understand how it works.
I've defined a store with a fixturesAdapter as adapter (rev 7).
I've defined two models:
App.Tag = DS.Model.extend({
name: ...
6
votes
2answers
771 views
How to handle singular resources with RESTAdapter
How are singular resources handled in ember-data? Say I have the following RESTful routes:
GET /cart
POST /cart
UPDATE /cart
DELETE /cart
ember-data expects find() to return an array, plus it ...
6
votes
1answer
640 views
Architecture for data layer that uses both localStorage and a REST remote server
Anybody has any ideas or references on how to implement a data persistence layer that uses both a localStorage and a REST remote storage:
The data of a certain client is stored with localStorage ...
6
votes
3answers
651 views
Ember-data polymorphic associations
Has anybody come up with an answer for polymorphic associations and ember-data?
We would need some way of being able to query the type at the other end of the relationship from what I can tell.
...
6
votes
1answer
2k views
Ember-Data callback when findAll finished loading all records
With ember-data I'm loading all records of a model with:
App.adapter = DS.Adapter.create({
findAll: function(store, type) {
var url = type.url;
jQuery.getJSON(url, function(data) {
...
6
votes
1answer
954 views
Embedded hasMany attribute access gives “TypeError: Cannot call method 'hasOwnProperty' of undefined”
Using:
Ember commit a5d45f66e1 from Jan 3, 2013)
Ember-Data commit 508479dee7 from Jan 4, 2013
Similar to this question ('Unable to get hasMany association'), I am unable to access embedded ...
6
votes
1answer
886 views
Does ember-data really support nested urls?
I have a top level session object that can have many speakers under it.
My REST ish endpoint allows me to get all the sessions like so
/sessions/
I can get all the speakers for a given session like ...
6
votes
3answers
1k views
create temporarty non persistent object in Ember-Data
I want create an object using ember-data, but I don't want to save it until I call commit. How can I achieve this behavior?
6
votes
1answer
391 views
Delete associated model with ember-data
I have two models:
App.User = DS.Model.create({
comments: DS.hasMany('App.Comment')
});
App.Comment = DS.Model.create({
user: DS.belongsTo('App.User')
});
When a user is deleted, it also will ...
6
votes
1answer
175 views
Class inheritance in Ember Data hasMany associations
I'm trying to get Ember Data working with a hasMany association with class inheritance.
Example in Ember code:
var Person = DS.Model.extend({
name: DS.attr('string'),
animals: ...
6
votes
2answers
357 views
Ember choking upon encountering large data sets
Looking for a solution to an issue caused by large data sets forcing Ember to lock up the browser while it tries to process the data.
For pagination, I'm using tchak's handy pagination mixin to ...
6
votes
1answer
835 views
How to create has_and_belongs_to_many relationship with Ember.js & ember-data?
Is it possible to create a hasAndBelongsToMany relationship with Ember.js & ember-data?
Edit: Added ActiveRecord model examples to clarify.
class Project < ActiveRecord::Base
...
6
votes
3answers
533 views
Using primary keys with Ember Data
I've been struggling for the past few days with primary keys and the last version of Ember Data.
I first read how to do it on the Breaking Changes file on GitHub, but it's apparently outdated. I ...
6
votes
1answer
279 views
Ember-data: how to share and update a object in transaction between controller actions?
I've found on GitHub a good working example for ember-data under https://github.com/dgeb/ember_data_example and try to extend it by nested resource ('has_many: comments'). In the original example a ...
6
votes
1answer
228 views
Return count of total rows in ember data find or findAll request
I need to know how many rows of specific resource (App.User) exists in total? I tried to return it in response, but Ember complains about not mapped properties and is expecting only array of records ( ...
6
votes
1answer
258 views
Ember.js / Rails and associations: how to submit back to Rails a record and its associations?
Say you have two Rails models with association:
class Foo < ActiveRecord::Base
attr_accessible :name
belongs_to :moo
end
class Moo < ActiveRecord::Base
attr_accessible :name
has_many ...
6
votes
2answers
548 views
Ember.js data associations not saving
Let's say I have 2 models:
App.Address = DS.Model.extend({
street: DS.attr('string'),
person: DS.belongsTo('App.Person')
})
App.Person = DS.Model.extend({
name: DS.attr('string'),
...
5
votes
2answers
561 views
Compiling ember-data
In the Read-Me for ember-data I found the following lines:
Getting ember-data:
Currently you must build ember-data.js yourself.
Clone the repository, run bundle then rake dist. You'll find
...
5
votes
1answer
207 views
Understanding Ember Views
I'm looking for some clarification on views in Ember.js
Coming from a rails background and I'm trying to ignore any preconceptions. From what I understand of the ember framework there are 5 ...
5
votes
2answers
828 views
Ember.js sorting and filtering children of a hasMany relationship in parent route
Update #2
I found that when I refactored the filtering logic to take place in a compound computed property within the PostController instead of within individual routes, I was able to get it working. ...
5
votes
3answers
881 views
ember-data: How to make a Saving/Saved flash message
In order to make a little yellow "Saving"/"Saved" indicator message at the top of my app, I'd like to have a boolean property indicating if any ember-data records are currently in flight.
I tried ...
5
votes
1answer
382 views
How to embed one-to-one relation in Ember-data?
I'm using Ember 1.0-pre4.
I have two models in one-to-one relationship:
App.Lesson = DS.Model.extend
timeslot: DS.belongsTo 'App.Timeslot'
App.Timeslot = ...
5
votes
2answers
308 views
Ember-Data how to know when an entity is fetched
What is the best way to know when an entity has been retrieved from the remote store in ember-data?
I need to make a call to retrieve data but I need some values from a fetched ember-data object.
At ...
5
votes
2answers
267 views
How to handle 404 of Ember Data in route?
In my route I have a method that tries to request a list of models from the server
model: ->
App.MyModel.find
projectId: (@modelFor "project").id
Now obviously sometimes this might ...
5
votes
1answer
225 views
Bootstrapping data in ember.js
What's the best way to bootstrap data for an emberjs app on page load. I know it will most likely get the data from either a data-for attribute or data within a hidden div, but where in the emberjs ...
