嘗試在顯示標籤內使用以下代碼。struts if display tag display中的標籤
<s:if test="%{#percentid} == '12'">
<display:column title="Status">Fail</display:column>
</s:if> <s:else>
<display:column title="Status">pass</display:column>
</s:else>
and in java action class code
list.add(new ViewWork(percentid));
我沒有得到如果標籤的價值。我想,如果在標籤 請幫我 在此先感謝
檢查代碼,我們需要用%{#attr.ViewWork.percentid == '12'}或嘗試%{#attr.ViewWork.percentid == 12}(沒有'符號).. – goodyzain