thymeleaf th:action替换代码
时间: 2023-08-06 13:03:00 浏览: 203
Thymeleaf中th:each及th:if使用方法解析
在Thymeleaf中,可以使用th:action属性来指定表单提交的目标URL。下面是一个示例代码,将使用th:action替换掉原有的HTML代码:
原有代码:
```html
<form action="/submit" method="post">
<input type="text" name="username" />
<input type="submit" value="Submit" />
</form>
```
使用th:action替换后的代码:
```html
<form th:action="@{/submit}" method="post">
<input type="text" name="username" />
<input type="submit" value="Submit" />
</form>
```
在上面的示例中,使用了Thymeleaf的URL表达式@{}来构建目标URL,这样可以避免硬编码URL,使代码更加灵活。
阅读全文