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 に答える