Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
792 views
in Technique[技术] by (71.8m points)

conditional - Thymeleaf compare #locale expression object with string

I want to set a th:class attribute depending on the context locale using the expression object #locale.

I have tried

th:class="${#locale}=='en'?'active':''"
th:class="${#locale=='en'}?'active':''"

Both of them results in false, but whent I print it with th:text="${#locale}, I got the correct locale code (en,es).

Any idea of how to compare the #locale object with a locale code?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Based on the answer posted by David_Garcia, I could resolve my issue this way:

th:class="__${#locale}__=='en'?'active':''

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...