如何将变量从我的 JS 文件传递到 Spring Boot 控制器?

问题描述 投票:0回答:1
javascript spring thymeleaf
1个回答
0
投票

@RequestParam
注释查看
name
<select>
属性。 第一个叫
name="stt"
,第二个没有名字。 您需要为第二个属性指定
name
,然后将其用作您的
@RequestParam
s

<select name="stt" ... />
应对应于
@RequestParam("stt") String state

<select name="city" ... />
应对应于
@RequestParam("city") String city

(或者无论你想如何命名它们。)

© www.soinside.com 2019 - 2024. All rights reserved.