0

リクエストスコープに値を設定しようとしていて、ボタンポップウィンドウをクリックしてnull値を取得すると、別のjspを取得しようとしています。ユーザーがボタン1を使用している場合、コードの2つのセクションを検証するために、他のjspのボタンの値を取得する必要があるためです。次にfind by id テキスト領域が開き、ボタン2をクリックするとfind by nameテキスト領域が開き、そのポップウィンドウを閉じる必要があります

    <HTML>
    <HEAD>
        <TITLE>Using Buttons</TITLE>
        <script type="text/javascript">


               function button1()
               {
                var mywindow= window.open("file.jsp", "file","status=1,width=350,height=150");
         }    

        </SCRIPT>
    </HEAD>

    <BODY>
        <H1>Using Buttons</H1>

         <INPUT TYPE="BUTTON" name="butto" VALUE="Button 1" ONCLICK="button1()"/>
               <% request.setAttribute("button1" ,"butto");%>

       <% request.setAttribute("button1" ,"butto");%>



    </BODY>
</HTML>

これは私のファイル.jspです

<!

DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt"%>
<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql"%>
<%@ taglib prefix="x" uri="http://java.sun.com/jstl/xml"%>
<%@page
    import="com.nousinfo.tutorial.employee.service.model.bo.EmployeeBO"%>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>

</head>
<%= (String)request.getAttribute("button1") %>
<body>



</body>
</html>

null値を取得する理由は何ですか

4

1 に答える 1

0

window.open()を呼び出すだけでは、リクエストスコープオブジェクトを他のjspに転送しません。forward()を使用せずにリクエストスコープから別のJSPにデータを送信することはできません。

使用例

RequestDispatcher rd = servletContext.getRequestDispatcher("/pathToResource");
rd.forward(request, response);

ただし、この例では、window.open()を呼び出すだけでは機能しません。

于 2012-11-28T11:00:07.377 に答える