gpt4 book ai didi

spring - 如何使用spring mvc使用@RequestParam捕获多个参数?

转载 作者:IT老高 更新时间:2023-10-28 13:05:27 29 4
gpt4 key购买 nike

假设点击了一个超链接并使用以下参数列表 myparam=myValue1&myparam=myValue2&myparam=myValue3 触发了一个 url。现在如何在 spring mvc 中使用 @RequestParam 捕获所有参数?

我的要求是我必须捕获所有参数并将它们放在 map 中。

请帮忙!

最佳答案

@RequestMapping(value = "users/newuser", method = RequestMethod.POST)   
public String saveUser(@RequestParam Map<String,String> requestParams) throws Exception{
String userName=requestParams.get("email");
String password=requestParams.get("password");

//perform DB operations

return "profile";
}

您可以按照上述方式使用 RequestParam。

关于spring - 如何使用spring mvc使用@RequestParam捕获多个参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22398892/

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