gpt4 book ai didi

java - 如何使用 HttpServletRequest(Spring Framework) 传递同名的多个值?

转载 作者:行者123 更新时间:2023-11-30 10:43:17 24 4
gpt4 key购买 nike

我有两个输入框在 View 中

<input name="test[]" type="text" value="one">
<input name="test[]" type="text" value="two">

在 Controller 中

public String store(@Context HttpServletRequest request) {
// now i get only last value
String[] array = request.getPerameter("test");

}

在 PHP 中,我可以使用相同的方式将值作为数组。

最佳答案

你可以使用 request.getParameterValues(test)

请查看oracle doc了解更多信息,这里是 example

关于java - 如何使用 HttpServletRequest(Spring Framework) 传递同名的多个值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37828407/

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