如何获得在输入​​标签中传递给href标签Thymeleaf

时间:2018-09-20 13:41:45

标签: spring spring-boot thymeleaf

我的网页中有一个<input>标签,其值需要传递到Thymeleaf中的href标签。

<input type="password" name="pass" id="pass" th:value="*{pass}" placeholder = "Password">
<a th:href="@{~/updatepassword?password={pass}'&token={toke}(pass=${pass},toke=${token})}">Val</a>

但是,在输入字段中传递的值却为空。

在这里可以做些什么来正确传递值?

0 个答案:

没有答案