我有一个html,我用相同的名称动态生成输入类型文本 示例: -
<form method="post"
action="http://localhost:8080/social/rs/polling/temp"
enctype="multipart/form-data"id="save_poll"
id="save_poll">
<input type="text" style="width: 400px; height: 31px; line-height: 31px;" class="answer_textbox" id="answer_textbox1" name="topic">
<input type="text" style="width: 400px; height: 31px; line-height: 31px;" class="answer_textbox" id="answer_textbox2" name="topic">
<input type="button" value="Save" id="save" >
</form>
现在,我有一个泽西岛休息服务,我将接受这个文本框名称“主题”, 但我不知道该怎么做? 我尝试通过使用字符串列表来获取它,如@ FormDataParam(“topic”)列表主题,以及字符串数组,如@FormDataParam(“topic”)String [] topic 但仍然无法获得那些文本框字段, 使用字符串List时得到的错误是“错误的争论数”, 对于字符串数组我在主题数组中得到null? 请帮帮忙?