@Prats: Yes you can get the intermediate page(not home page) url parameter values by the following way.
router.js
backboneApp.Routers.MyrouterRouter = Backbone.Router.extend({
routes:{
"" : "routeToList",
"register" : "routeToRegister",
//Here the actual url along with the fragment(parameters)
"edit/:id" : "routeToEdit"
},
.
.
.
//Other functions.
.
.
.
//sending the url fragment to render() function....
routeToEdit: function(id)
{
this.editView = new backboneApp.Views.EditView();
//Note, this render function from the corresponding view,
//can receive the extra fragment(parameter)
this.editView.render(id);
this.$content.html(this.editView.el);
}
});
edit.js
backboneApp.Views.EditView = Backbone.View.extend({
.
.
.
// some other functions....
.
.
.
render: function(id)
{
// The id which I passed received here, from here you can
// manipulate as you wanted.
});
}
});
Note: I have used the url as edit/:id, for routing. As far your requirement, you can use your url in the routes method by having constant-url/:variable-fragment, so that this variable-fragment passed to your corresponding view's render() function. There you can manipulate the parameters as you wanted. Multiple parameters also possible, if you follow the same concept above but it needs a bit more effort. Hope this helps you.