I'm running revision 7 (also tried with 8, haven't tried with 5 or 6) of Ember Data with .NET Web API, and I'm currently facing an issue when ask my store to findAll. While debugging I see that it fires an ajax request to the right place, brings the correct data from my resource, and the data is formatted correctly. So I'm assuming the issue is mapping.
Sometime ago I asked how do "mappings" work. At the time I was using revision 4 and after I defined mappings through the adapter, it was loading my data with no issues, but then I've made changes and updated my reference to Ember-Data to revision 7 and it no longer works, nor I am able to identify what is wrong with my mapping.
EDIT:
(Nov 26th 2012) I am trying to put a fiddle together as a better example of what I'm trying to do, but I'm failing even at that cause I'm awesome: http://jsfiddle.net/schawaska/SGn9B/
What I want to do is basically load my navbar items with ember-data, but the fiddle uses the fixtureAdapter which doesn't really require mappings (or does it?) so I'm not sure if this is going to be the best sample of all compared to my actual code which I'm using the RESTAdapter, and the whole point is to finally understand mapping. I'll keep playing with it until I figure out how to load from fixture and then I guess I'll edit this again with more details. You're welcome to point out in the fiddle what I might be doing wrong.
/EDIT
To put everyone in context, here are the parts of my code that are relevant to the issue:
So here's my backend model (C#)
public class Navigation {
[Key]
public int Id { get; set; }
public string DisplayText { get; set; }
public string RouteName { get; set; }
public string RoutePath { get; set; }
public string IconClassName { get; set; }
}
My controller is defined like this (C#):
public class NavigationController: ApiController {
private AppDataContext db = new AppDataContext();
public object GetNavigationItems() {
return new { navigationItems = db.NavigationItems };
}
}
when I call this resource (via GET localhost/api/navigationitems) I get the following json:
{
"navigationItems": [
{"id":1,"displayText":"Home","routeName":"home","routePath":"root.index.index","iconClassName":"icon-home"},
{"id":2,"displayText":"About","routeName":"about","routePath":"root.index.about","iconClassName":"icon-home"},
{"id":3,"displayText":"Contact","routeName":"contacts","routePath":"root.index.contact","iconClassName":"icon-home"}
]
}
(this json seems consistent with what Ember data expects and I've been also testing it with Fiddler)
my data store is defined like this (JS):
// displaying only one model to keep it short
App.store = DS.Store.create({
revision: 7,
adapter: DS.RESTAdapter.create( {
bulkCommit: false,
namespace: 'api',
mappings: {
navigationItems: 'App.NavigationItem'
},
plurals: {
navigation_item: 'navigationitems'
}
})
});
My model is defined like this (JS):
App.NavigationItem = DS.Model.extend({
displayText: DS.attr('string'),
routeName: DS.attr('string'),
routePath: DS.attr('string'),
iconClassName: DS.attr('string')
});
My controller is defined like this (JS):
App.NavBarController = Em.ArrayController.extend({
content: App.store.findAll(App.NavigationItem),
selected: null
});
Beside the obvious fact that I don't see my view populated with the nav bar items, I've noticed that the console has an error message:
Uncaught TypeError: Cannot read property 'map' of undefined ember.js:587
Ember.EnumerableUtils.map ember.js:587
DS.Store.Ember.Object.extend.loadMany r7_ember-data.js:2379
DS.RESTAdapter.DS.Adapter.extend.didFindAll r7_ember-data.js:5483
ajax.success r7_ember-data.js:5473
fire jquery-1.8.2.js:974
self.fireWith jquery-1.8.2.js:1082
done jquery-1.8.2.js:7788
callback jquery-1.8.2.js:8500
Then I started to debug by setting breakpoints all over my app, ember, ember-data and the RESTAdapter to see where it was actually breaking.
So, this particular method (map) is what's currently throwing the error, but during debug, even after the error is thrown, obj is not null but it obj.keys._data returns a blank model (none of the properties have value)
var utils = Ember.EnumerableUtils = {
map: function(obj, callback, thisArg) {
// the following line throws the error
return obj.map ? obj.map.call(obj, callback, thisArg) : arrayMap.call(obj, callback, thisArg);
},
...
I'm stuck on this for sometime now and I can't afford spending much more time on this. I was wondering if there's anything I might have overlooked or perhaps I have made something wrong (I've been trying to find examples of something similar to this but couldn't find any, also, the documentation doesn't talk a whole lot about mapping, just a couple of comments on ember data repo).
At the Breaking Changes doc, I see that revision 5 had changes in regards to mapping, but as it stands I don't know if those changes apply to my code since that's to map model attributes to server model attributes, and in my case I'm already providing the JSON data with the correct attribute names.
Could anyone please help me to understand what is going on with this issue? Articles/Documentation are welcome as well as the answer for this particular issue, but what I am ideally looking for is an overall explanation of how this works or how this is supposed to work and what is the correct way to interact with this adapter when I need mapping.
Again, this might be simple or something I overlooked, and in this case I'm sorry. But I'm just a little burned out at the moment as I can't figure it out myself and I didn't expect to spend a long time on this.
Thanks
.find({})instead offindAlland see if that works? – jonnii Nov 25 '12 at 23:21.findinstead of.findAllbut got the same error, also @jonni, as you asked on twitter, I'm passingidand notId. Is there anything I should know about Ember.Map that could help me here? – MilkyWayJoe Nov 26 '12 at 11:58