你可以使用 ?? 这个判断运算符:

如果想要查看object的attribute是不是null:

<#if object.attribute??></#if>

如果想要查看objectattribute是不是null:

<#if (object.attribute)??></#if>
Last modified: 28/06/2023

Author

Comments

Write a Reply or Comment

Your email address will not be published.