码迷,mamicode.com
首页 > 其他好文 > 详细

angular : ui-router 操作原理

时间:2014-12-05 12:17:38      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   sp   div   log   bs   ef   

<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="title"

 


 

路径:www.example.com/title

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

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

 

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

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

 



  

angular : ui-router 操作原理

标签:style   blog   ar   color   sp   div   log   bs   ef   

原文地址:http://www.cnblogs.com/stooges/p/4146214.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!