码迷,mamicode.com
首页 > Web开发 > 详细

简单的html渲染

时间:2017-05-21 15:22:41      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:propertyplaceholderhelper html web

 

public static String render(String pHtmlTemplate, final Map pModel) {
    PropertyPlaceholderHelper placeholderHelper = new PropertyPlaceholderHelper("${", "}");
    String result = placeholderHelper.replacePlaceholders(pHtmlTemplate, new PlaceholderResolver() {
        @Override
        public String resolvePlaceholder(String placeholderName) {
            return Objects.toString(pModel.get(placeholderName), "");
        }
    });
    return result;
}

上面的方法返回一个携带数据的html, 这样前端js 就不用等到ajax数据之后再渲染.

注: PropertyPlaceholderHelper中 有一句

propVal = parseStringValue(propVal, placeholderResolver, visitedPlaceholders);

这句代码会去解析model中的value.  一般不需要, 可以把它注释掉.

我的实践是: Spring+vuejs+html 的一个web实例.(不用jsp或其它html模板)

本文出自 “ds” 博客,请务必保留此出处http://xnatural.blog.51cto.com/6103484/1927857

简单的html渲染

标签:propertyplaceholderhelper html web

原文地址:http://xnatural.blog.51cto.com/6103484/1927857

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!