标签: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。
×所有的状态头可以是参数
标签:style blog ar color sp div log bs ef
原文地址:http://www.cnblogs.com/stooges/p/4146214.html