Spring 表单提交,后台自动封装有集合对象的对象

from表单:

<form action="${pageContext.request.contextPath}/vote/save" method="post" id="save">
    主题:<input type="text" name="theme"><br />
        投票项:<input type="text" name="options[0].option"> <br />
    <input type="text" name="options[1].option"><br />
<input type="submit" value="保存"> </form>

注:name="options[1].option"

后台直接接受。

原文地址:https://www.cnblogs.com/qingyibusi/p/6114292.html