jsp解析html手机页面

${message}<form:errors path="*"></form:errors>

解析为html

<span th:if="${#fields.hasErrors('${alipayForm.*}')}"><span th:errors="${alipayForm.*}"></span></span>
<span th:text="${message}"></span>

再解析distributorAlipayConfirm.html时,找url比较复杂,经过分销商注册登录后须将维护价格中的商品生成二维码来查找检测页面的地址,测试过程当中会出现cartList为空的问题,须建立空的cartList实例以下java

List<CartForm> cartList = new ArrayList<>();
model.addAttribute("cartList", cartList);

还有或者userBar的问题,须添加以下代码:session

UVO uvo =new UVO();
session.setAttribute("UVO", uvo);

固然还有”粮食“问题,须将其初始化添加以下代码:测试

GoodsForm goodsForm = new GoodsForm();
goodsForm.setType("粮食");
model.addAttribute("goodsForm", goodsForm);
相关文章
相关标签/搜索