gpt4 book ai didi

jquery - 在模板内使用 If 条件

转载 作者:行者123 更新时间:2023-12-01 02:48:57 25 4
gpt4 key购买 nike

如何在 jQuery 模板中使用 IF 语句?

这是我的模板:

<script type="text/html" id="attachmentListTemplate">
{{if $item.current_cmt_id == id }}
<li>
<a href="${link}" class="fancyIFrame clearfix">${title}</a>
</li>
{{/if}}
</script>

其中 id 本质上是 ${id} 并且由数据绑定(bind)传递(通过 KnockoutJS)。没有 IF 语句的输出很好,如下所示: ${$item.current_cmt_id}

这是数据绑定(bind)(由 KnockoutJS 提供支持):

<ul data-bind='template: { name: "attachmentListTemplate", foreach: attachmentsModel.convAttachments, templateOptions: {current_cmt_id: <%=comment.id%>} }'> </ul>

关于为什么 if 语句不起作用有什么建议吗?我正确比较这两个条件吗?

最佳答案

假设 id 是一个可观察对象,您需要将其作为函数调用,而不是将其视为属性。请尝试以下操作:

{{if $item.current_cmt_id == id()}}

关于jquery - 在模板内使用 If 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5098731/

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