在Spring Boot服务器上,我有一个汽车的分页列表,其中包含参数sort,range,desc,page等进行过滤和排序,并在Thymeleaf中生成如下所示的URL:
example.com/cars?page=5&sort=mileage
我希望能够使用其中一些参数向URL添加更多参数,但是我对此还很陌生,不知道如何获取具有所有参数的当前URL来添加更多参数。不会失去以前的样子
example.com/cars?page=5&sort=mileage&desc=true
我已经找到在Spring上执行类似操作的答案,但理想情况下,我想在Thymeleaf模板上执行操作,这可能吗?
Get full current url thymeleaf with all parameters
我发现您可以使用$ {param.sort}来获取Thymeleaf中的特定参数,以获取param的排序,是否可以通过类似的方式获取当前的所有参数?
谢谢