當(dāng)前位置:
首頁(yè) >
前端技术
> javascript
>内容正文
javascript
SpringBoot中使用thymeleaf的switch来实现if-else if -else的效果
生活随笔
收集整理的這篇文章主要介紹了
SpringBoot中使用thymeleaf的switch来实现if-else if -else的效果
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
場(chǎng)景
SpringBoot中使用thymeleaf的開(kāi)關(guān)語(yǔ)句實(shí)現(xiàn)if-else if -else的效果。
Switch使用示例:
<div th:switch="${user.role}"><p th:case="'admin'">User is an administrator</p><p th:case="#{roles.manager}">User is a manager</p> </div>
請(qǐng)注意,只要一個(gè):case屬性計(jì)算為true,其它每一個(gè)th:case屬性在相同的switch中認(rèn)定為false。
默認(rèn)選項(xiàng)指定為th:case="*":
<div th:switch="${user.role}"><p th:case="'admin'">User is an administrator</p><p th:case="#{roles.manager}">User is a manager</p><p th:case="*">User is some other thing</p> </div>實(shí)現(xiàn)
<div th:switch="${info.status}"><th th:case="00">完成</th><th th:case="01">異常</th><th th:case="*">未知狀態(tài)</th> </div>?
總結(jié)
以上是生活随笔為你收集整理的SpringBoot中使用thymeleaf的switch来实现if-else if -else的效果的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: SpringBoot中对thymelea
- 下一篇: JS中使用定时动态获取系统当前时间