gpt4 book ai didi

javascript - knockout : can't do conditional output within foreach block

转载 作者:行者123 更新时间:2023-12-03 07:18:37 26 4
gpt4 key购买 nike

我有一个包含 X 个元素的数组。我正在循环数组,当我到达数组中的最后一个元素时,我想输出一个附加列

<tr data-bind="foreach: columns">
<th>{{ label }}</th>
<!-- ko if: ($parent.columns.length - 1) == $index -->
<th>foo</th>
<!-- /ko -->
</tr>

它没有渲染最后一列。

最佳答案

当你想通过 javascript 计算 View 中的任何可观察变量时,你需要使用括号。
查看:

<table>
<thead >
<tr data-bind="foreach: columns">
<th data-bind="text:label"></th>
<th data-bind="if:$index() == $parent.columns().length-1">Hello</th>
</tr>
</thead>
</table>

示例:http://jsfiddle.net/GSvnh/5111/

关于javascript - knockout : can't do conditional output within foreach block,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36297533/

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