ember-data is a data persistence extension for the Ember.js framework.
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 ...
1
vote
1answer
828 views
Ember data multi level hierarchy with embedded always
I am able to use embedded always for one level but I am unable to use it for two level deep model. Need an urgent help
App.Post = DS.Model.extend(
title: DS.attr("string")
comment: ...
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 ...
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({
...
4
votes
1answer
528 views
Ember data saving a relationship
I'm having difficult saving a one-to-many relationship in ember data. I have a relationship like this:
App.ParameterSet = DS.Model
name: DS.attr("string")
regions: DS.hasMany("App.Region")
...
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 ...
6
votes
1answer
952 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 ...
1
vote
1answer
673 views
Ember-data embedded objects stored as separate objects
I was wondering if it would be possible to define a model stored into another one.
I have this kind of structure:
Model Contact
String name
Model Address (hasMany)
Model Phone (hasMany)
...
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) ...
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 ...
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 ...
3
votes
2answers
365 views
How do I load two models in one JSON request in Ember-data?
Using Ember-data and Ember.js, I'm trying to load two models with one JSON request. The models have a relationship analogous to this:
App.Person = DS.Model.extend({
name: DS.attr('string'),
...
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?
3
votes
1answer
569 views
Unable to get hasMany association
I used commit eaa1123 (ember) and 508479d (ember-data) to build the JS files.
I have the following JSON returned from my Rails backend, which is generated with active_model_serializers (0.6.0):
{
...
2
votes
1answer
181 views
ember data serializer data mapping
I'm using ember & ember-data to try and consume a json feed from the server. Here is my code:
App = Ember.Application.create();
DS.RESTAdapter.configure(
"plurals", {
category: ...
2
votes
1answer
2k views
How to refresh entity using ember data
In my aplication I recived with websockects info about with objects are changed and ember data should reload them.
How can I force emberdata to update already loaded record?
How can I force ...
1
vote
2answers
241 views
Ember.js current_user - accessing global variable from controller
I am baffled by a seemingly simple ember question. I am using active_model_serializers meta data serialization to serialize my rails current_user method from a rails controller, then extracting and ...
0
votes
1answer
830 views
ember-data does not support embedded objects
i'm working with ember data rev-11 and django tastypie. Looks like now ember-data does not support embeded resources but support sideloads (django tastypie does not support it). What is the best ...
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 ...
16
votes
2answers
579 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
742 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 ...
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)
});
...
3
votes
1answer
428 views
What is the complete list of expected JSON responses for DS.RESTAdapter?
I am attempting to write a custom express.js based server for an Ember.js app. I am getting along fairly well but I'm constantly getting stuck trying to guess what JSON responses Ember Data is ...
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
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?
3
votes
1answer
1k views
Ember Data nested resource URL
Let's say I have a Rails app with the following layout (simplified this a bit from my actual project):
User
has many Notes
Category
has many Notes
Note
belongs to User
belongs to ...
1
vote
2answers
965 views
EmberData: Two models related with hasMany relationships
I have an application logic that requires two models to have reciprocal hasMany relationships. As an example, imagine a set of GitHub issues that can be tagged with several labels.
I am trying to use ...
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.
...
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 ...
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) {
...
1
vote
1answer
199 views
Save foreign key to other Model with hasMany relation
I'm having the following problem.
In my app I have a screen to make a new Site. But when I save the new site via an action on the controller, the languages-property isn't sent with the POST-request ...
1
vote
1answer
491 views
transition after saving model of ember data
I want to make transition after a create a post.
post/new > click submit > rails backend successfully create post and response a json > redirect to newly created post's path
in ...
5
votes
2answers
824 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. ...
4
votes
4answers
425 views
emberjs handle 401 not authorized
I am building an ember.js application and am hung up on authentication. The json rest backend is rails. Every request is authenticated using a session cookie (warden).
When a user first navigates ...
4
votes
5answers
2k views
Emberjs + data + rails - Uncaught TypeError: Cannot call method 'map' of undefined
When I am trying to load data from rails db with emberjs + ember data I am getting this error
Uncaught TypeError: Cannot call method 'map' of undefined
Here's the coffescript code:
...
3
votes
1answer
383 views
Ember.js RC2 deprecation warning: register(“store”, “main”)
After upgrading to Ember.js RC2 I get the following deprecation warning:
DEPRECATION: register("store", "main") is now deprecated in-favour of register("store:main");
What do I have to change in ...
3
votes
1answer
1k views
How to persist hasMany association in a single Ember.js form using Ember Data & Rails?
I'm having trouble determining the correct way to persist a hasMany association with a single form using Ember.js, Ember Data and Rails. A Client hasMany Projects. I have a new project form that has ...
3
votes
2answers
1k views
Adding item to filtered result from ember-data
I have a DS.Store which uses the DS.RESTAdapter and a ChatMessage object defined as such:
App.ChatMessage = DS.Model.extend({
contents: DS.attr('string'),
roomId: DS.attr('string')
});
...
2
votes
1answer
188 views
Self-Join with Ember-Data
Does anyone have any suggestions on how to manually create a self-join relationship using ember-data?
If, for example, a user had many followers (other users), what would be the simplest way to ...
1
vote
1answer
120 views
how to communicate with Rails in Ember
Let me explain shortly what I mean. I'm writing an app that makes use of Ember and Rails. Every employee can give other co-workers a kudo. He can't know how many others received. I can only know how ...
1
vote
1answer
139 views
How to render hasMany associations each with their own controller
So my models are set up like this :
App.Post = DS.Model.extend
comments: DS.hasMany 'App.Comment'
App.Comment = DS.Model.extend
post: DS.belongsTo 'App.Post'
I'm trying to create a view that ...
0
votes
1answer
89 views
EmberJS CRUD : deletedRecord keeps re-appearing after linkTo
I have an issue with deleting records from an Ember.JS model.
I have an overview of records in my handlebars template with a delete button for each row.
When clicking the button I would like to ...
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 ...
4
votes
2answers
851 views
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 dirtying an object and then setting its state to clean again on purpose - without ...
3
votes
1answer
69 views
Ember-Data .find() vs .all() - how to control cache?
I was told that in order to not make a request all the time, one can use .all() method to load data that is kept in the store. But how does Ember deal with cache? I have a couple of questions.
How do ...
3
votes
1answer
496 views
How do you set the default store to a FixtureAdapter in Ember.js?
I'm trying to bootstrap a small application with Ember 1.0.0-rc1. The application will be doing some stuff with images. I don't have any sort of backend to the application yet, so I'm trying to use ...
3
votes
1answer
236 views
Ember.js Data how to clear datastore
I am experiementing with Ember.js and have setup a small app where users can login and logout. When the user logs out I want to clear all of the currently cached records in the Data Store.
Is there a ...
3
votes
1answer
323 views
Add extra url params per model with Ember.js
I have two models:
App.Providers = DS.Model.extend({
name: DS.attr('string'),
description: DS.attr('string'),
logo: DS.attr('string'),
products: DS.hasMany('App.Products')
});
...
3
votes
1answer
356 views
Ember-Data: Knowing when a RecordArray is completely populated
I have a situation where isLoaded on a DS.RecordArray changes to true but the content, length property of the RecordArray is still empty, 0 at that time and only changes later.
Sample ...
3
votes
1answer
308 views
Ember-Data: How to use `DS.Adapter.findHasMany`
I asked a much longer question a while back, but since the library has changed since then, I'll ask a much simpler version:
How do you use DS.Adapter.findHasMany? I am building an adapter and I want ...


