I am new to Backbone.js and was wondering how exactly I get history persistance working with Backbone.js, whether it is actually possible or whether I need to resort to History.js.
I am building a single-page web page that accesses Facebook's Graph API. Currently, I can map the right actions to the path's returned by the Backbone.History Object that get created by using the built in Router.navigate function.
However, those actions always require a new call to the API, since in the current implementation of the Router navigate function, there is no way to serialize the current data/state.
I was just wondering whether there is a way, or what common practice is.