调用 doPost 方法以及 JSP 中页面的 url

Call a doPost method along with a url of a page in JSP

示例: window.open("LoginServlet", "_self");

此代码将使浏览器重定向到 LoginSevlet,但它执行 Servlet 的 doGet 方法,但我想执行 doPost 方法。

有什么方法可以直接执行LoginServlet的doPost方法吗?

单击带有 target="_self"method="post" 的表单:

 <form name="postForm" method="post" action="LoginServlet" target="_self">
 </form>

并提交它而不是 window.open:

 document.forms["postForm"].submit();