0
我有一個包含幾個字段的jsp頁面。我需要在servlet中使用這些字段中的某些字段來獲取Car的詳細信息。這是jsp頁面中的表單:將數據傳遞給servlet
<form method="post" action="Update">
<table id="centerTable" width="600">
<tr>
<th><h5>Car ID</h5></th>
<th><h5>Car Brand</h5></th>
</tr>
<tr>
<td>${bookedCar.id}</td>
<td>${bookedCar.carbrand}</td>
</tr>
</table>
</br></br>
<p class="submit"><input type="submit" value="Cancel Booking"></p>
</form>
在servlet Update.java中,我在doPost中有以下內容。我需要在更新servlet中使用car id,但我一直將值設爲null。我是否錯誤地調用了該屬性?
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
Cars myCar = (Cars)request.getAttribute("bookedCar");
String carID = (String)request.getAttribute("bookedCar.id");
感謝這工作! :) –