Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何通过非方法GET从href传输参数?我用弹簧。也许弹簧工具可以帮助我?通过方法获取:
<a href="saveCandidate?id=${candidate.id}">${candidate.name}</a>
通过get方法传输的candidate.id
如何通过 Post(例如方法)传输 Candidate.id?
不,默认情况下href命中get方法,没有办法指定方法。
尝试一些 htmlform 来指定方法或将您的逻辑移动到GET.
form
GET
如果您可以使用客户端脚本(javascript),则有可能这样做。
javascript