0
我已經可以從我的應用程序中的資源包中獲取消息,但是我需要顯示來自表格布爾屬性的國際化值。thymeleaf - th:switch boolean to i18n value
我嘗試這樣做:
<td th:switch="${boolean}">
<span th:if="${boolean} = 'true'" th:text="#{messages.true}"/>
<span th:if="${boolean} = 'false'" th:text="#{messages.false}"/>
</td>
但是有在桌子上沒有任何顯示。
我弄錯了什麼?