You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
673 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>结果页面</title>
</head>
<body>
<h1>Success!</h1>
<%-- 从ModelAndView中取出商品对象展示到页面上 --%>
<%-- 注意这里的productInfo和Controller里addObject的键名一致 --%>
<p>商品名称:${productInfo.pname}</p>
<p>是否热门:${productInfo.isHot}</p>
<p>市场价格:${productInfo.marketPrice}</p>
<p>销售价格:${productInfo.shopPrice}</p>
<p>商品图片:${productInfo.image}</p>
<p>分类名称:${productInfo.category.cname}</p>
<p>商品描述:${productInfo.pdesc}</p>
<p>上架日期:${productInfo.pdate}</p>
</body>
</html>