我在Spring MVC上工作。如何从视图中请求Controller并显示数据,标签或其他技术?
我尝试这样的视图(它是内循环)
<a href="/admin/history/getTotalprice/${order.orderId}/${restaurantSession.restaurantName}"/>
这是我的控制器,我希望将总价格返回为双倍
@RequestMapping(value = "/admin/history/getTotalprice/{orderID}/{restaurantUserName}")
public double getTotalPrice(@PathVariable("orderID")Integer orderID,@PathVariable("restaurantUserName")String restaurantUserName){
double totalprice=0;
for(ProductInCart productInCart: orderService.getProductByRestaurantUserNameAndOrderId(restaurantUserName,orderID)){
totalprice = totalprice + ((productInCart.getProduct().getProductPrice()) * (productInCart.getAmount()));
}
return totalprice;
}
谢谢大家的帮助
修改
对不起,可能是我的不好问。我找到了对Controller请求的标记,并在同一页面中显示从Controller发送的数据。因为数据是特定的,例如/管理/历史/ getTotalprice / 1 / A。总价是500.
/管理/历史/ getTotalprice / 2 / A。总价是1000。