<body> <a ui-sref="title">title<a> </body>
ui-router 會去解析body裏的ui-sref,title對ui-router來講是一種狀態,接着會去找着狀態ide
$stateProvider .state('title', { url: '/title', ... })
state就是狀態,發現了就會把ui
<a ui-sref="title">title<a>
換成正常的href="title"url
路徑:www.example.comspa
首先去when找,找到redirectcode
沒有去state找,找到就走router
沒有去otherwise,再去when對象
$urlRouterProvider. when("/", "/home"). otherwise("/");
×全部的狀態頭能夠是參數blog
23-OCT-2015it
<a ui-sref="{{$state.current.name}}(stateParam)">GO</a>
在searhing 時能夠注入stateParam這對象。class