@RequestParam
注释查看 name
的 <select>
属性。 第一个叫name="stt"
,第二个没有名字。 您需要为第二个属性指定 name
,然后将其用作您的 @RequestParam
s
<select name="stt" ... />
应对应于 @RequestParam("stt") String state
<select name="city" ... />
应对应于 @RequestParam("city") String city
(或者无论你想如何命名它们。)