首页 > 代码库 > angular : ui-router 操作原理

angular : ui-router 操作原理

<body>    <a ui-sref="title">title<a></body>

ui-router 会去解析body里的ui-sref,title对ui-router来说是一种状态,接着会去找着状态

$stateProvider  .state(‘title‘, {     url: ‘/title‘,     ...  })

state就是状态,发现了就会把

<a ui-sref="title">title<a>

 换成正常的href="http://www.mamicode.com/title"

 


 

路径:www.example.com/title

ui-router会去找当前title有没有在state里

        $urlRouterProvider.                    when("/", "/home").                    otherwise("/");            

 

如果没有,会进入otherwise,再去when里找最后再去的home的state。

×所有的状态头可以是参数

 



  

angular : ui-router 操作原理