I'm using the following system configuration:
Chromium 14.0.835.202 on Ubuntu 11.04 using Backbone 0.5.3
A Backbone Router with the following routes and callbacks defined:
, routes: {
'': 'handlerRoot'
, 'second': 'handlerSecond'
}
In this system I'm having the following behavior:
- If I access the 'root' (the home), the 'handlerRoot' is called. OK, it was what I was expecting.
- If I go to 'second' (#second), the 'handlerSecond' is called. OK, it was what I was expecting.
- If I'm in 'root' and next I go to 'second', and once there I'm clicking the Back Button, as a result of pushing the Back Button two callbacks are being called: first is called 'handlerSecond', and next 'handlerRoot'. Here in fact I was expecting that only 'handlerRoot' is called, cause my intention as a user when I pushed the Back Button was to return to the previous page.
- If I'm doing the following path: 'root' -> 'second' -> 'root' -> 'second', and once in 'second' (the last one), I'm clicking the Back Button, as a result of this pushing are called the following callbacks: First 'handlerSecond', next 'handlerRoot', next 'handlerSecond', and finally 'handlerRoot'. Its like all the callbacks associated to the URL paths in the previous history are called (in reverse order). Again, my expectaction was only being called 'handlerRoot' (for the same reason, I'm coming back from 'second' to root, I'm not interested in all the history).
I was watching the Backbone.js code for History and I saw that is using the 'onhashchange' event (for the compatible browsers). So, I set manually in the browser console the following:
function locationHashChanged() {
console.log(window.location.toString())
};
window.onhashchange = locationHashChanged;
I did the same experiments (1), (2), (3) and (4) with this configuration. Effectively all the URL paths in the previous history were printed in reverse order. For example in (3), when I'm pushing the Back Button, first is printed the URL for 'second', and next is printed the URL for 'root'. So, the Backbone behavior indeed is the 'onhashchange' behavior.
My question is:
Which one is the reason of this behavior (for what is it useful)? Cause for example if my callbacks are only switching views, in the example (4), I'm switching views four times, when I'm really needing to switch the views only one time (change the view being presented in 'second' by the view being presented in 'root'). Is there some way to get this behavior?
Thanks in advance!
codevar MainRouter = Backbone.Router.extend({ , routes: { '': 'handlerRoot' , 'second': 'handlerSecond' }, handlerRoot: function( actions ){ alert('handlerRoot');}, second : function( actions ){ alert('second') } });codeI think that something else is going on with your code... Maybe your problem is in something you do in the views, and not in the router? – Robert Dec 28 '11 at 11:43