I'm currently trying to figure out how to change the route parameters without reloading the entire page. For example, if I start at
but update a name to be 'George', to change the route to be:
http://www.example.com/#/page/george
If I already had http://www.example.com/#/page/:name routed.
Without reloading the location. Can one just set $routeParams.name = "George" ?
Edit: Alternatively, is there a way to update http://www.example.com/#/page?name=George without reloading or resetting the page?