gpt4 book ai didi

javascript - Angular js : How to access $state current page name and params in html

转载 作者:行者123 更新时间:2023-11-30 15:56:50 25 4
gpt4 key购买 nike

我有多个页面,我想根据状态更改这些页面我正在使用 ui-routes 来管理路由。我想在 html 中访问 $state.current.name。

<div ng-repeat="que in questions.Cars">

我想动态改变如下
<div ng-repeat="que in questions.$state.current.name">这样我就可以遍历页面明智的问题。

完整代码的 Plunker http://plnkr.co/edit/Op1QDwUBECAosPUC7r3N?p=preview

最佳答案

在您的 Controller 中包含 $state 服务。比您可以将此服务分配给您范围内的属性。

代码:

$scope.$state = $state;

然后获取模板中的当前状态:

$state.current.name

要获取模板中的当前状态和参数,请使用 $state.includes(stateName [, params]):

$state.includes('state.name', {id: 1}); // returns true

关于javascript - Angular js : How to access $state current page name and params in html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38393555/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com