I get Cannot call 'start' of undefined when calling...

    Backbone.history.start()

When running some checks Backbone returns the object but Backbone.history returns undefined.

What could be the cause of this?

Thanks

link|improve this question

76% accept rate
feedback

3 Answers

up vote 20 down vote accepted

Do you have any routes on the controller? Backbone only creates the history once at least one route is specified.

More:

TypeError: Cannot call method 'start' of undefined**

Hmm, for some reason Backbone.history is undefined, and so there is no start method on it. It turns out that Backbone.js creates an instance of Backbone.History (upper case ‘H’) called Backbone.history (lower case ‘h’) once a controller has been created that has at least one route specified on it. This makes sense, as history management is only required if there are routes to respond to.

http://tinnedfruit.com/2011/04/26/testing-backbone-apps-with-jasmine-sinon-3.html

link|improve this answer
I set the window.router to a base router before I call this. New to backbone though so I might not fully understand the question. – fancy Sep 8 '11 at 5:31
Ah, I figured it out, thanks for the lead. – fancy Sep 8 '11 at 6:59
feedback

A similar error message ".. has no method 'start'" pops up if you write Backbone.History.start instead of Backbone.history.start (the correct one is with lowercase h in history).

link|improve this answer
feedback

I hit the same error.

This happens when you do not make an instance of the router:

var routerInstance = new blogRouter();

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.