0

我正在使用简单的 html/javascript 将数据发布到 SpringSource tc Server 上运行的 servlet,第一次单击时,请求作为 GET 而不是 POST 接收,但在随后的单击中,servlet 确实收到 POST 请求。为什么请求在到达 servlet 上的服务方法之前被转换为 GET。可以做些什么来解决它。

I tried opening that html/javascript file in chrome/firefox/IE browsers to see if it makes any difference, but still the same issue.

function formSubmit(){
document.forms['myForm'].action="https://myURL";
document.forms['myForm'].method='post';
    document.forms['myForm'].target='_blank';
    document.forms['myForm'].submit();
}

this is the code that I use on the html page to post the form data to the servlet.
4

0 回答 0