gpt4 book ai didi

javascript - 从 ng-repeat 访问 $index

转载 作者:行者123 更新时间:2023-11-30 10:09:13 29 4
gpt4 key购买 nike

如何访问 ng-repeat 的索引?

我有以下代码:

<ion-item ng-repeat="item in items track by $index" href="#/tab/friend/$index">
foo
</ion-item>

然后我从列表中单击一个项目,我得到:http://localhost:8100/#/tab/friend/$index

但我想去例如http://localhost:8100/#/tab/friend/12

我做错了什么?

最佳答案

Angular 变量只能在 ng- 属性中自动识别。要在常规 html 属性中使用这些变量,您必须使用双括号:

<ion-item ng-repeat="item in items track by $index" href="#/tab/friend/{{$index}}">
foo
</ion-item>

关于javascript - 从 ng-repeat 访问 $index,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27489793/

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