我有以下代码:
<% control StaffMembers %>
<li>
Name: <h2>$Name</h2>
</li>
<% end_control %>
我想问一下,仅当名称文本字段不为空或不为空时,如何才能显示它。控件中的 if 语句不起作用:
<% control StaffMembers %>
<% if $Name %>
<li>
Name: <h2>$Name</h2>
</li>
<% end_if %>
<% end_control %>
谢谢