Change page location hash in angularjs application without page reload

I need to be able to change the hash of the location of the page (for example, from "# /" to "# / page1") so that corner characters do not reload the page. Is it possible at all?

+3
source share
1 answer

in the route definition, add this parameter reloadOnSearch: false

Suppress reloading of a view based on ui-router when changing request parameters

+11
source

All Articles