gpt4 book ai didi

javascript - 在 ng-repeat 中使用变量

转载 作者:行者123 更新时间:2023-11-29 19:08:55 26 4
gpt4 key购买 nike

我正在尝试找到一种方法将我的变量插入到 ng-repeat 中,请参阅下面的示例进行解释。

controller.js

$scope.firstParams = $stateParams.firstId;

template.html

<span style="margin-left:3px;" ng-repeat="list in user.userlists.{{firstParams}}"></span>

ng-repeat 示例仅用于展示目的

基本上,我想做的是让我的 ng-repeat 通过 $scope.firstParams 获取参数,并像这样:ng-repeat= “在 user.userlists.gameboy 中列出” 如果参数为“gameboy”。

我尝试了一堆 filter:Options 但没有成功。

最佳答案

在 javascript 中,您使用 [] 符号表示变量属性名称

尝试

ng-repeat="list in user.userlists[firstParams]"

演示链接 - http://jsfiddle.net/tk11wz7j/

关于javascript - 在 ng-repeat 中使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40712266/

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