$location学习笔记

$location
如链接: http://localhost:8088/#/home-%3EMAIN_TAB?code=011Ep3iE0uiJYf26RMiE0xZ8iE0Ep3iO&state=7910006
$location学习笔记_第1张图片

$location服务不会重新加载整个页面,它只会单纯地改变URL。如果我们想重新加载整个 页面,需要用$window服务来设置地址。
$window.location.href = "/reload/page";

$window.location
$location学习笔记_第2张图片
$window. location . href = '/center' ;
结果:http://localhost:8088/center , HTTP Status 404
$window. location . hash = '/center' ;
结果:http://localhost:8088/#/center , 是真实想要跳转的

你可能感兴趣的:(AngularJs)