赞
踩
使用支付宝第三方接口,调用接口传递参数以后生成一段html文本,前端用了Thymeleaf框架,Thymeleaf怎么原样输出html内容
原因:th:utext 用于html的文本替换,常用于富文本编辑器编辑后的内容显示到前台页面上
后端代码:
- //请求
- String result = alipayClient.pageExecute(alipayRequest).getBody();
-
- model.addAttribute("result",result);
前端代码:
<a th:utext="${result}"></a>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。