2013-12-20 26 views
0

我是新來的thymeleaf,並將一些用JSP + struts編寫的ma代碼轉換爲Spring3 + thymeleaf。我有一個這個標籤equivalant <html:messages>在thymeleaf中顯示消息

<html:messages id="mymessage" property="mymessage" message="true" > 
    //Some message here 
</html:messages> 

任何人都可以告訴我等價標籤或方式來轉換此代碼在thymeleaf?

+0

什麼命名空間是html? –

回答

1

The Thymeleaf guide covers messages in section 4。使用#{message.key}作爲任何Thymeleaf HTML屬性的值,對於參數化消息使用#{message.key(param1, param2)}