繁体   English   中英

从JSP传递到Servlet的数据在Servlet中返回null

[英]Passed data from JSP to Servlet returning null in Servlet

<table border="1" cellpadding="5" id="newtable">
                <!-- <caption id="tablehead">Rooms are available!</caption> -->

              <!--       <tr class="hover"> -->
                    <tr>
                        <th>Room No</th>
                        <th>AC</th>
                        <th>Deluxe</th>
                        <th>Tariff</th>
                    </tr>
                    <c:forEach var="room" items="${myrooms}">
                        <tr bgcolor="#4B476F" onMouseOver="this.bgColor='gold';" onMouseOut="this.bgColor='#4B476F';">

                            <td class="nr">1</td>
                            <td name="ac"><c:out value="${room.ac}" /></td>
                            <td name="deluxe"><c:out value="${room.deluxe}" /></td>
                            <td>&#8377;<c:out value="${room.price}" /></td>
                            <td><button type="button" class="mybutton" onclick="location.href='passtopayment'">Pay</button> </td>
                        </tr>
                    </c:forEach>
                </table> 

单击相应行后,我想获取AC和Deluxe列的td值。 但是,当执行我得到的以下servlet代码时,将输出null null。 请帮忙!

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();

    String ac = request.getParameter("ac");
    String deluxe = request.getParameter("deluxe");

    out.println(ac);
    out.println(deluxe);
}

/**
 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
 */
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
    doGet(request, response);
}

您正在使用location.href='passtopayment'这不是提交表单的正确方法。

就像对Servlet的单独请求一样,什么也不会发送到Servlet。

您应该使用form并将请求提交到Servlet。

<form action="passtopayment" method="post">
       <!-- HTML controls -->
       <input type="submit" value="Submit"/>
</form>

这是详细的示例

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM