Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting an Assertion Failed error after integrating Ember with Rails 4

I created a small inventory app in Ember, and followed a tutorial on adding Rails 4 as a persistence layer: http://pixelhandler.com/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()
});
like image 704
cosmikwolf Avatar asked Nov 12 '13 19:11

cosmikwolf


1 Answers

I 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 comes before the ember-data script.

like image 86
Marcio Junior Avatar answered Oct 06 '22 05:10

Marcio Junior