Today I found that there is an extra exclamation point in the URL in the browser. Does anyone know what is going on?
http://localhost:3000/#!/home
伊谢尔伦2017-05-15 17:11:59
Have you upgraded the new version of ng-route? The default is '#!'.
Official documentation is here: https://docs.angularjs.org/api/ng/provider/$locationProvider
You can use hashPrefix
to remove the exclamation point in config.
$locationProvider.hashPrefix('');