gpt4 book ai didi

javascript - 从 ng-repeat 内部调用 angularjs 属性指令

转载 作者:行者123 更新时间:2023-11-29 21:58:24 28 4
gpt4 key购买 nike

我有一个表列对象的集合,我正在使用 ng-repeat 对其进行迭代。我正在根据用户想要查看的列动态构建表格。

每个 TH 标签调用这样的“可排序”指令...

<th sortable collection="myCollection" sortcolumn="sortcolname">Heading</th>

当自定义属性的值被硬编码(如上)时,这很好。但是,在我的代码中,我正在像这样从集合中的对象获取值....

<th ng-repeat="col in cols" sortable collection="{{col.collection}}" sortcolumn="{{col.sortcol}}">{{col.DisplayName}}</th>

这是行不通的。自定义属性(collection 和 sortcolumn)中的值没有及时呈现,sortable 指令正在获取变量名称({{col.collection}} && {{col.sortcol}})而不是变量值。

我该怎么做?

最佳答案

自从我完成任何 Angular 以来已经有一段时间了,但是你确定你的 collection 和 sortcolumn 属性中需要双括号吗?比如,这行得通吗?

<th ng-repeat="col in cols" sortable collection="col.collection" sortcolumn="col.sortcol">{{col.DisplayName}}</th>

关于javascript - 从 ng-repeat 内部调用 angularjs 属性指令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25190951/

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