while (rs.next()) { application.setAttribute("id", rs.getString("spid")); application.setAttribute("goods_name", rs.getString("itemname")); application.setAttribute("goodspic", rs.getString("price")); //application.setAttribute("blob", rs.getString("blob")); %> <tr> <td width = "100px" height = "42px"> <input name="one" type="checkbox" onclick="myOne()"/> </label> </td> <td width = "135px" height = "42px"><%=application.getAttribute("id") %></td> <td width = "150px" height = "42px"><%=application.getAttribute("goods_name")%></td> <td width = "150px" height = "42px" id="price"> <img src="yuan.jpg" width="20" heigth="20"> <%=application.getAttribute("goodspic")%> </td> <td width = "240px" height = "42px" id="car"> <input type="button" class="decrease" value="-"> <input type="text" class="quantity" value="1"/> <input type="button" class="increase" value="+"> </td> <td width = "135px" height = "42px"> <input type="button" class="deldet" value="删除此商品"> </td> </tr> <% } %>根据以上代码编写购物车价格总计并当页显示
时间: 2023-07-21 20:12:54 浏览: 123
可以在代码中加入以下部分来实现购物车价格总计并当页显示:
```
<%
double total = 0;
ResultSet rs = ... // 数据库查询代码
while (rs.next()) {
// ... 数据库查询结果处理代码
double price = Double.parseDouble((String)application.getAttribute("goodspic"));
total += price;
// ... HTML代码
}
%>
<tr>
<td colspan="3"></td>
<td>总计:</td>
<td colspan="2"><%= total %></td>
</tr>
```
其中,`total` 变量用来存储购物车中所有商品的价格总和,`price` 变量用来存储当前商品的价格,`Double.parseDouble()` 方法用来将字符串类型的价格转换为浮点数类型。在 HTML 代码中,使用 `<td>` 元素来显示总计价格。这里使用了 `colspan` 属性来让总计这一行占据两列,以便居中显示。
相关问题
application.setAttribute
application.setAttribute 是一个用于在 Java Web 应用程序中设置和获取应用程序范围属性的方法。它允许开发者在整个应用程序中共享数据。这些属性可以在整个应用程序的生命周期内访问和修改。
例如,可以使用以下代码设置一个名为 "counter" 的应用程序范围属性,并将其初始化为 0:
```java
int counter = 0;
application.setAttribute("counter", counter);
```
然后,您可以在应用程序中的任何位置获取和修改此属性的值:
```java
int counter = (int) application.getAttribute("counter");
counter++;
application.setAttribute("counter", counter);
```
这样,您就可以在应用程序中的不同部分共享和操作 "counter" 属性的值。
request.getSession().setAttribute
request.getSession().setAttribute()是用来在session对象中设置属性值的方法。通过这个方法,可以将参数存储在session中,并且可以在多个页面上使用。\[3\]这个方法可以通过sessionID得到自己的session,并且即使重定向客户端也不会丢失。\[3\]在引用\[2\]中的例子中,通过request.getSession().setAttribute("name", str)将一个名为"name"的属性赋值为"huxiwen"。然后通过request.getSession().getAttribute("name")可以获取到这个属性的值。\[2\]所以,通过request.getSession().setAttribute()方法可以给session对象设置属性值。
#### 引用[.reference_title]
- *1* *2* [对request.getSession().setAttribute和request.getSession().getAttribute()的理解](https://blog.csdn.net/weixin_42200027/article/details/80482716)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [request.setAttribute()和request.getSession().setAttribute()解释](https://blog.csdn.net/sinat_15274667/article/details/51585538)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文