$location学习笔记

来源:互联网 发布:php会员积分管理系统 编辑:程序博客网 时间:2024/06/06 20:48
$location
如链接:http://localhost:8088/#/home-%3EMAIN_TAB?code=011Ep3iE0uiJYf26RMiE0xZ8iE0Ep3iO&state=7910006


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

$window.location

$window.location.href= '/center';
结果:http://localhost:8088/center ,HTTP Status 404
$window.location.hash= '/center';
结果:http://localhost:8088/#/center , 是真实想要跳转的
0 0