以下のコードのリクエストを投稿するためのリクエストを取得したい -
<html>
<head>
<script language="JavaScript">
function redirect() {
if (window.focus)
self.focus();
this.location = '/test/GetReports?id=
<%=System.currentTimeMillis()+session.getId()%>';
}
</script>
<title>Downloading Document</title>
</head>
<body marginwidth='0' marginheight='0' onload='javascript:redirect()'>
</body>
</html>
これを達成するために、私は以下で行いました -
<html>
<head>
<script language="JavaScript">
function redirect() {
if (window.focus)
self.focus();
location = '/test/GetReports?id=<%=System.currentTimeMillis()+session.getId()%>';
var form = document.createElement("form");
form.setAttribute("method", "post");
form.setAttribute("action", location);
form.submit();
}
</script>
<title>Downloading Document</title>
</head>
<body marginwidth='0' marginheight='0' onload='javascript:redirect()'>
</body>
</html>
しかし、それは何の違いもありません。それでもこのリクエストは Get です。他に何をする必要があるか教えてください。
ご協力いただきありがとうございます!