gpt4 book ai didi

java - Spring表单标签和模型绑定(bind)转义

转载 作者:行者123 更新时间:2023-11-30 04:41:55 25 4
gpt4 key购买 nike

我的 JSP 中有一个 Spring 表单标记以及与其绑定(bind)的模型。我希望表单内的一些输入作为单个 @RequestParam 值接收,但无论我放置 Spring 输入还是纯 HTML 输入,该值都会绑定(bind)到模型。我怎样才能避免这种行为?

最佳答案

只需将其放入您的 Spring 表单中即可:

<input type="text" id="yourParam" name="yourParam" value="3"/>

您将能够使用 @RequestParam 获取 Controller 中的值,而无需将其绑定(bind)到您的模型:

 @RequestMapping(value = "/yourMapping", method = RequestMethod.POST)
public ModelAndView showForm(@RequestParam String yourParam, YourModelObject yourModelObject...) {
// You can retrieve here the value of your JSP input

}

关于java - Spring表单标签和模型绑定(bind)转义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12077839/

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