使用Spring Boot在同一页面上提交循环表单

时间:2016-11-09 06:11:24

标签: javascript java spring-boot xmlhttprequest

我有一个包含两个部分的页面:第一部分是表单,第二部分显示表单提交时的响应。表单接受来自附加网络摄像头的图像。因此,我必须使用来自https://github.com/jhuckaby/webcamjs的Webcam js包装器 表单提交需要是一个重复的过程,这意味着,一旦提交表单,第二部分将显示表单结果,并且需要使用相同的页面再次提交表单。 我正在使用Spring Boot / Thymeleaf来实现这一目标。我的部分代码如下:

form.html

<form name="mainform"   action="">
   <input  type="text" name="sbid[]" id="sbid">
   <td><input type="submit" value="Compare"  onclick="submit_snapshot()"/></td>
</form>
<div id="resdiv">
   <div><img src="images/imgnew.jpg" alt="" width="100%" height="220" /></div>
   <p> This is part of the second div</p>
</div>
<script>
   function submit_snapshot() {
   url=url+'sbid[]='+batchId[i].value;
   //alert(url);
   var batchId=document.getElementsByName('sbid[]');
   var url='/imagecompare-0.1.0/compare?';
   for(var i=0; i<batchId.length-1; i++){
   url=url+'sbid[]='+batchId[i].value+'&';
   }

   Webcam.upload( webcamuri, url, function(code, text) {
   document.write(text);
   } );

   }
</script>

控制器代码如下:

@CrossOrigin
@RequestMapping(method = RequestMethod.POST, value = "/compare")
public String handleCompare(@RequestParam("sbid[]") String sbid[],
    @RequestParam("webcam[]") MultipartFile webcamFiles[],
    RedirectAttributes redirectAttributes, Model model) throws IOException {

    return "formresults";
}

formresults页面与form.html几乎相同,只是名为resdiv的第二个div具有不同的数据:

<div id="resdiv">
    <div><img src="images/imgnew.jpg" alt="" width="100%" height="220" /></div>
    <p> This is part of the result div</p>
</div>

但是,这种设计似乎不起作用。 form.html提交的表单正确地重定向到formresults并显示数据。但是,如果我从formresults页面执行后续表单请求,则它不会显示正确的表单响应。相反,它会自动重定向回form.html。 有人可以帮助指出为什么会发生这种情况。

1 个答案:

答案 0 :(得分:1)

我终于解决了这个问题。这里的问题是以下声明:

<form name="mainform"   action="">

由于表单是由XHR单独提交的,因此此空白action标记会强制页面返回到较早的页面。 我尝试完全删除form标记,现在它正在运行。