gpt4 book ai didi

javascript - 智能表格无法正确排序

转载 作者:行者123 更新时间:2023-11-30 12:19:53 24 4
gpt4 key购买 nike

我的列标题未使用智能表格正确排序。他们不是单独排序,而是一起排序。

<thead>
<tr>
<th st-sort="field" ng-repeat="field in stat.q">{{field}}</th>
</tr>
</thead>

这是javascript。

stat.q = ["Who is the coolest?", "What is your favorite color?", "Pick a movie", "Where do you want to go?", "test rating"];   

最佳答案

要使用 ng-repeat,您必须将大括号放在 {{field}} 周围:

<thead>
<tr>
<th st-sort="{{field}}" ng-repeat="field in stat.q">{{field}}</th>
</tr>
</thead>

关于javascript - 智能表格无法正确排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31455383/

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