是否有任何標記可以有條件地呈現HTML塊。對於例如爲:Struts有:在Spring MVC中有條件地呈現HTML
<logic:present name="someForm" property="someProperty">
//Code block
</logic:present>
對於例如爲:JSF有:
<h:panelGrid rendered="#{not empty someList}">
//Some code block
</h:panelGrid>
有沒有像在春天MVC什麼?
是的,我知道我可以使用JSTL,但我不知道春天mvc沒有這樣的東西它自己,但現在我知道。感謝您的回答 :) –