<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。
×所有的状态头可以是参数
时间: 2024-11-07 21:09:48