<div class="gifs container">
<div class="row">
<div th:each="gif : ${gifs}" class="col s12 l4">
<a th:href="@{'/gif/' + ${gif.name}}">
<img th:src="@{'/gifs/' + ${gif.name} + '.gif'}" />
The problem occur in this line. <a href="#" th:class="(${gif.favorite} ? 'un' : '') + 'mark favorite'"></a>
</a>
</div>
</div>
</div>
我使用Spring Tools Suite IDE。我也用Thymeleaf和Spring。感谢。