gpt4 book ai didi

html - HTL 条件渲染,同时不影响嵌套的 html

转载 作者:行者123 更新时间:2023-12-04 08:20:29 27 4
gpt4 key购买 nike

如果条件评估为 false,是否可以使用 HTL 不呈现 HTML 元素?但仍然呈现嵌套内容?例子:

<A renderIf="${properties.value}">
<B>my content</B>
</A>
如果值为 false那么这将被呈现:
<B>my content</B>
如果值为 true这应该呈现:
<A>
<B>my content</B>
</A>

最佳答案

这正是 data-sly-unwrap 是为了:

<A data-sly-unwrap="${!properties.value}">
<B>my content</B>
</A>
(请注意您的示例的倒置条件,因为当 data-sly-unwrap 评估为 true 时,它​​将展开元素,即仅显示内容)。

关于html - HTL 条件渲染,同时不影响嵌套的 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65521117/

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