如何通过更改url get参数'?'来停止百里香的字符编码要更改为%3F的字符

时间:2018-06-14 06:49:10

标签: thymeleaf

代码如下: -

<a th:href="@{{path}(path=${templatebitcointalkforumlink})}"

并从属性文件中: -

eg:- template variable=https://bitcointalk.org/index.php?topic=4456828

注意: - 我不拥有这篇文章/主题,这只是一个例子

现在改为: -

https://bitcointalk.org/index.php%3F 主题= 4456827

1 个答案:

答案 0 :(得分:0)

如果您不想利用自动编码参数,网址替换参数等,则不应使用@{...}。相反,只需使用常规变量。

<a th:href="${templatebitcointalkforumlink}">...</a>