Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个表单,单击添加按钮会出现一个新行。如果再次单击添加按钮,则另一行将出现在前一行的下方,依此类推。用户将在这些行中输入信息。我的问题是如何将每一行中新添加的信息的值传递给spring控制器。
您的行元素应命名为要绑定在控制器中的列表对象中的列表。例子:
<input type="text" name="address[0]" /> <input type="text" name="address[1]" /> [...]
因此,当您添加新行时,只需增加地址索引即可。
希望它能回答你的问题。