HTML模板框架源代码var HtmlTemplate = (function () {
function HtmlTemplate(htmlSource) { this.htmlSource = htmlSource; }
HtmlTemplate.prototyp...
分类:
Web程序 时间:
2014-05-06 11:41:55
阅读次数:
653
需求:后台(指管理员后台)上传一个html模板到文件服务器上,前台(商家操作的平台)读取到模板,并填充数据,生成新的vm页面到webapp/WEB-INF/view目录下,用于预览、保存、打印。
最开始的代码:
@Test
public void test() throws Exception{
String templateUrl = baseServic...
分类:
Web程序 时间:
2014-04-29 13:11:21
阅读次数:
465