2017-04-23 83 views
-1

我給模型添加一個名爲numberOfPages的變量,我想對這個變量加以限制。我的意思是我想實現這樣的事情:簡單的循環在百里香

for(int i = 1; i <= numberOfPages; i++) 

我該怎麼做?

+0

潛在重複:http://stackoverflow.com/questions/20633118/for-loop-in-thymeleaf – Bas

回答

0

您可能意思是這樣的:

<div th:each="page : ${numberOfPages}"> 
    <span th:text="${page}">Some default text here</span> 
</div> 
0

可能是你正在尋找這一點。

<div th:each="page : ${#numbers.sequence(1, __${numberOfPages}__)}"> 
    <span th:text="${page}">Some default text here</span> 
</div>