OpenCms exists isSet
- exists: 检查元素是否存在。
- isSet: 检查元素是否存在且不为空。
<c:if test="${value.Options.exists && value.Options.value.Text.isSet}">
<div>${value.Options.value.Text}</div>
</c:if>
<c:if test="${value.Options.exists && value.Options.value.Text.isSet}">
<div>${value.Options.value.Text}</div>
</c:if>