私はjspを初めて使用し、最初のアプリケーションを作成しました。私は本をフォローしています。この本はコードを使用していました
<form name="addForm" action="ShoppingServlet" method="post">
<input type="hidden" name="do_this" value="add">
Book:
<select name="book">
<%
//Scriplet2: copy the booklist to the selection control
for (int i=0; i<bookList.size(); i++) {
out.println("<option>" + bookList.get(i) + "</option>");
} //end of for
%>
</select>
Quantity:<input type="text" name="qty" size="3" value="1">
<input type="submit" value="Add to Cart">
</form>
サーブレットでは、コードは
else if(do_This.equals("add")) {
boolean found = false;
Book aBook = getBook(request);
if (shopList == null) { // the shopping cart is empty
shopList = new ArrayList<Book>();
shopList.add(aBook);
} else {... }// update the #copies if the book is already there
private Book getBook(HttpServletRequest request) {
String myBook = request.getParameter("book"); //confusion
int n = myBook.indexOf('$');
String title = myBook.substring(0, n);
String price = myBook.substring(n + 1);
String quantity = request.getParameter("qty"); //confusion
return new Book(title, Float.parseFloat(price), Integer.parseInt(quantity));
} //end of getBook()
私の質問は、[カートに追加]ボタンをクリックすると、行のserveltでString myBook = request.getParameter("book");
パラメーターとして本を取得しますが、jspではそれを言いませんでしrequest.setAttribute("book", "book")
たrequest.getParameter("qty");
。サーブレットがjspコードで設定せずに、これらのリクエストパラメータをどのように受信していますか?ありがとう