gpt4 book ai didi

java - 在 SpringMVC 中,是否有使用表单元素值选择 Controller 方法的方法?

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:56:13 26 4
gpt4 key购买 nike

在 Spring MVC 中,是否有使用表单元素值选择 Controller 方法的方法?例如,假设我们在一个表单中有两个名称为“action”的按钮。有没有在不使用任何 javascript 的情况下根据用户单击的按钮执行不同的 Controller 方法?

最佳答案

是的,使用 @RequestMapping(params="...")。参见 docs .

You can narrow path mappings through parameter conditions: a sequence of "myParam=myValue" style expressions, with a request only mapped if each such parameter is found to have the given value. For example:

@Controller
@RequestMapping("/owners/{ownerId}")
public class RelativePathUriTemplateController {

@RequestMapping(value = "/pets/{petId}", params="myParam=myValue")
public void findPet(@PathVariable String ownerId, @PathVariable String petId, Model model {
// implementation omitted
}
}

关于java - 在 SpringMVC 中,是否有使用表单元素值选择 Controller 方法的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6480946/

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