Uncaught Typeerror: Undefined Is Not A Function Rails3/backbone/js
Solution 1:
It sounds like you are not including the file that holds the declaration of App.Controllers.Fffforms
. Make sure that you are including that file somewhere in you code prior to where you include application.js.
Solution 2:
I presume there is a kind of bundling mechanism there in your app. Make sure all files have correct usage of semicolons (;) in all bundled files.
Solution 3:
My answer is similar to @ream88's, but Rails 3.1+ Asset Pipeline feature takes care of minification, bundling and so on, so I prefer to have the un-minified versions available for debugging, etc.
So download the commented/full version of backbone.js and underscore.js and save them in app/assets/javascripts
(you could also save them in vendor/assets/javascripts
).
The difference is that you should update the manifest file (app/assets/javascripts/application.js
) to add the require directives, like so
//= require jquery//= require jquery_ujs//= require underscore//= require backbone//= require_tree .
Because backbone depends on underscore, this will cause them to get loaded in the right order, thus avoiding the error.
Solution 4:
Ran into the same problem, and then I figured out that I haven't included underscore.js
anywhere. So I wrote a simple backbone.js
file:
/*
*= require backbone/underscore-min.js
*= require backbone/backbone-min.js
*/
and stored it under vendor/assets/javascripts
along with the Backbone and Underscore files:
vendor/assets/javascripts/
├── backbone
│ ├── backbone-min.js
│ └── underscore-min.js
└── backbone.js
My application.js.coffee
looks something like this one now:
#= require backbone#= require query
Solution 5:
This just bit me so I thought I'd share my find: make sure your file's line endings match your server's file system.
Post a Comment for "Uncaught Typeerror: Undefined Is Not A Function Rails3/backbone/js"