0
我會盡量保持這一點儘可能簡單,而不會丟失問題的上下文。使用ui路由器訪問數據的狀態
假設我使用UI-路由器
$stateProvider.state("home", {
abstract: true,
templateUrl: "...",
meta: {
label: "...",
...
}
});
如何訪問當前狀態的meta
對象的屬性和值,這樣我可以在視圖中應用這些,例如有一個狀態:
<section class="content-header">
<h1>
{{meta.label}}
</h1>
</section>
因此,上述示例將顯示當前狀態的meta
對象的值label
。
https://github.com/angular-ui/ui-router/wiki#attach-custom -data到狀態的對象 – o4ohel