gpt4 book ai didi

java - 为什么这个html按钮会发送get请求?

转载 作者:行者123 更新时间:2023-12-02 05:44:41 25 4
gpt4 key购买 nike

这段代码发送了get请求,为什么?

<form th:action="@{/books/edit/rename}" th:object="${book}" th:method="POST">
<input type="text" id="id" name="id" th:value="*{id}" value="1"/>
<input type="text" id="bookName" name="bookName" th:value="*{bookName}" value="nameExample"/>
<button type="submit">Rename for model</button>
</form>

最佳答案

尝试删除方法声明中的第 th:,如下所示:

<form th:action="@{/books/edit/rename}" th:object="${book}" method="POST">

因为它不读取代码并且默认为 GET,请检查此以获取更多详细信息 https://www.w3.org/TR/html401/interact/forms.html#h-17.3

关于java - 为什么这个html按钮会发送get请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56106990/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com