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>