【发布时间】:2011-05-19 01:39:40
【问题描述】:
是否可以检查某个属性是否已添加到模型中?
//in the controller teh variable is not always added
//
model.addAttribute("variable", myVariable);
在jsp中是这样的
<c:choose>
<c:when test="${variable is present}">
Not present
</c:when>
<c:otherwise>
Present
</c:otherwise>
</c:choose>
谢谢
【问题讨论】: