gpt4 book ai didi

spring-mvc - RequestParam 从选择选项 html 表单中获取数组

转载 作者:行者123 更新时间:2023-12-02 16:24:56 24 4
gpt4 key购买 nike

我正在尝试从 html 中的多选选项框中获取多个值。

我进入我的 Controller :

/test?t=1&t=2&t=3

在 Controller 中,我尝试获取 int 数组:

@RequestParam(value = "t", required = true) int[] t

但是当我使用以下方法检查时:

t.length

我只看到1,这意味着Spring只获取1个参数,但我期望3个。有人有什么想法吗?

最佳答案

我认为 spring 不会将参数数组转换为 String 以外的特定类型,因此您应该尝试以下操作:

@RequestParam(value = "t", required = true) String[] t

然后使用Integer.parseInt()将String转换为int。

关于spring-mvc - RequestParam 从选择选项 html 表单中获取数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10321328/

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