Skip to content

Instantly share code, notes, and snippets.

@hustKiwi
Last active December 11, 2015 01:49
Show Gist options
  • Save hustKiwi/4526161 to your computer and use it in GitHub Desktop.
Save hustKiwi/4526161 to your computer and use it in GitHub Desktop.
Backbone.Router.extend(_.extend(redirectRouter, {
routes: {
'': 'index',
'search/:query/p:page': 'search', // #search/kiwi/p7
'song/:id/': 'song' // #song/87336123/
// ...
},
search: function(query, page) {
// ...
}
});
app.router.navigate('song/87336123');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment