jQuery tmpl 插件 - 条件模板?

发布于 2024-11-06 17:09:55 字数 626 浏览 0 评论 0原文

我目前正在使用 jQuery tmpl 插件 生成一个列表:

<script id="mainTemplate" type="text/x-jquery-tmpl">
 <li>
  <a class="Page" href="#" rel="${LINK}" >${DESCRIPTION}</a>
 </li>
</script>

是否有可能使用 jQuery 模板进行条件处理?我尝试过:

<script id="mainTemplate" type="text/x-jquery-tmpl">
 <li>
 {{if ${TYPE} == "INTLINK" }}
  <a class="Page" href="#" rel="${LINK}" >${DESCRIPTION}</a>
 {{/if}}
 </li>
</script>

但没有成功。我希望能够根据传递的数据(通过 json)有条件地拥有不同的模板输出。

I'm currently generating a list using the jQuery tmpl plugin:

<script id="mainTemplate" type="text/x-jquery-tmpl">
 <li>
  <a class="Page" href="#" rel="${LINK}" >${DESCRIPTION}</a>
 </li>
</script>

Is it at all possible to have things conditionally processed using jQuery templates? I tried:

<script id="mainTemplate" type="text/x-jquery-tmpl">
 <li>
 {{if ${TYPE} == "INTLINK" }}
  <a class="Page" href="#" rel="${LINK}" >${DESCRIPTION}</a>
 {{/if}}
 </li>
</script>

But it didn't work. I want to be able to conditionally have different template output depending on the data being passed (via json).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天煞孤星 2024-11-13 17:09:55

无需将 TYPE 包装在 if 标记内。 这应该可以工作。

<script id="mainTemplate" type="text/x-jquery-tmpl">
    <li>
        {{if TYPE == "INTLINK" }}
            <a class="Page" href="#" rel="${LINK}" >${DESCRIPTION}</a>
        {{/if}}
    </li>
</script>

假设您的数据包含类似 {"TYPE": "INTLINK"} 的内容,

there is no need to wrap TYPE within the if markup. this should work

<script id="mainTemplate" type="text/x-jquery-tmpl">
    <li>
        {{if TYPE == "INTLINK" }}
            <a class="Page" href="#" rel="${LINK}" >${DESCRIPTION}</a>
        {{/if}}
    </li>
</script>

assuming your data contains something like {"TYPE": "INTLINK"}.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文