thymeleaf字符串拼接url

如果我们想对a标签里的href属性进行拼接,
拼接成下面这样:
http://localhost:8887/profile/questions?page=2
我想questions拼接到里面,由于它不总是questions,所以可以像下面这样拼接

<a th:href="@{'/profile/'+${section}(page=${pagination.totalPage})}" aria-label="Previous">
                            <span aria-hidden="true">&gt;&gt;</span>
                        </a>
发布了314 篇原创文章 · 获赞 113 · 访问量 54万+

猜你喜欢

转载自blog.csdn.net/dream_follower/article/details/105540006