0

我正在使用 Spring Roo。有table:tabletable:column标签。

<table:table data="${memberDetails}" id="memberDetail" delete="false"
                 create="false"
                 update="false" show="false" paginationFlag="false"
                 path="" typeIdFieldName="instanceId"
                 z="40I0ZgJoR5iBRXkYGHvl959736E=">
    <table:column id="customer" property="user.name"/> 
</table:table>

null如果属性user.name不为空,我如何检查或为空?如果它是空的,我希望解决那里的其他财产。

4

1 回答 1

0

检查此代码

<c:if test="${user.name =='null'}" >
 <table:column id="customer" property="user.name"/> 
</c:if> 

或者你可以使用

 <c:if test="${not empty user.name}">
       <table:column id="customer" property="user.name"/> 
    </c:if> 
于 2012-10-08T10:15:26.847 回答