I created a small inventory app in Ember, and followed a tutorial on adding Rails 4 as a persistence layer: /
But now I am getting the following error in the console:
Assertion failed: You included Ember Data but didn't define App.Store
The pages load fine, and it renders my index.erb and application.html.erb, but I get nothing from my ember bits rendered.
I am at a bit of a loss on how to troubleshoot this issue. Can someone point me in the right direction?
Thanks!
Update: I am also getting this error:
Uncaught TypeError: Attempting to register an unknown factory: `store:main`
and I do have App.Store defined in store.js:
App.Store = DS.Store.extend({
adapter: DS.RESTAdapter.create()
});
I created a small inventory app in Ember, and followed a tutorial on adding Rails 4 as a persistence layer: http://pixelhandler./blog/2013/09/24/scaffold-for-a-browser-app-built-with-ember-js-and-rails/
But now I am getting the following error in the console:
Assertion failed: You included Ember Data but didn't define App.Store
The pages load fine, and it renders my index.erb and application.html.erb, but I get nothing from my ember bits rendered.
I am at a bit of a loss on how to troubleshoot this issue. Can someone point me in the right direction?
Thanks!
Update: I am also getting this error:
Uncaught TypeError: Attempting to register an unknown factory: `store:main`
and I do have App.Store defined in store.js:
App.Store = DS.Store.extend({
adapter: DS.RESTAdapter.create()
});
Share
edited Nov 12, 2013 at 22:21
cosmikwolf
asked Nov 12, 2013 at 19:57
cosmikwolfcosmikwolf
3997 silver badges15 bronze badges
1
- Was this ever resolved and you managed to get it working? Having a similar issue now. – Ryan Drake Commented Sep 2, 2014 at 6:45
1 Answer
Reset to default 9I think that you are using the Ember Data 0.13 or 0.14. In these versions you need to declare the store property. Like this:
App.Store = DS.Store.extend({
adapter: DS.RESTAdapter
})
Update: I am also getting this error:
Uncaught TypeError: Attempting to register an unknown factory:
store:main
Make sure that your App.Store = ...
declaration es before the ember-data script.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742291161a4416215.html
评论列表(0条)