BaiduTemplate模板引擎使用示例(附源码)
程序员文章站
2022-05-14 21:22:43
1、新建项目,asp.net 空web应用程序
添加data,js,styles,templates文件夹,添加baidutemplate.js,jquery.js,...
1、新建项目,asp.net 空web应用程序
添加data,js,styles,templates文件夹,添加baidutemplate.js,jquery.js,bootstrap.css
2、添加list.js脚本,代码如下
var data = { "list": [ { "col1": "行1", "col2": "数据2", "col3": "数据3", "col4": "数据6", "col5": "数据5", "col6": "数据6" }, { "col1": "行2", "col2": "数据2", "col3": "数据3", "col4": "数据6", "col5": "数据5", "col6": "数据6" }, { "col1": "行3", "col2": "数据2", "col3": "数据3", "col4": "数据6", "col5": "数据5", "col6": "数据6" }, { "col1": "行4", "col2": "数据2", "col3": "数据3", "col4": "数据6", "col5": "数据5", "col6": "数据6" }, { "col1": "行5", "col2": "数据2", "col3": "数据3", "col4": "数据6", "col5": "数据5", "col6": "数据6" }, { "col1": "行6", "col2": "数据2", "col3": "数据3", "col4": "数据6", "col5": "数据5", "col6": "数据6" }, { "col1": "行7", "col2": "数据2", "col3": "数据3", "col4": "数据6", "col5": "数据5", "col6": "数据6" }, { "col1": "行8", "col2": "数据2", "col3": "数据3", "col4": "数据6", "col5": "数据5", "col6": "数据6" } ] }; var template = "templates/list.html"; $.ajax({ url: template, datatype: "html", success: function (val) { $("#list").html(baidu.template(val, data)); } });
添加模板文件list.html,内容如下
<table class="table table-bordered"> <thead> <tr> <td>列1</td> <td>列2</td> <td>列3</td> <td>列4</td> <td>列5</td> <td>列6</td> </tr> </thead> <%for(var i = 0; i<list.length;i++){ var item=list[i];%> <tr> <td><%=item.col1%></td> <td><%=item.col2%></td> <td><%=item.col3%></td> <td><%=item.col4%></td> <td><%=item.col5%></td> <td><%=item.col6%></td> </tr> <%}%> </table>
3、添加default.aspx页面,并添加引用
<%@ page language="c#" autoeventwireup="true" codebehind="default.aspx.cs" inherits="baidutemplate.default" %> <!doctype html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title></title> <script src="js/jquery.min.js"></script> <script src="js/baidutemplate.js"></script> <script src="js/list.js"></script> <link href="styles/bootstrap.css" rel="stylesheet" /> </head> <body> <form id="form1" runat="server"> <div id="list" style="margin-top:10px;"> </div> </form> </body> </html>
预览效果:
源码下载:http://xiazai.jb51.net/201612/yuanma/baidutemplate_jb51.rar
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
上一篇: VBS教程:VBscript属性-Global 属性
下一篇: VBS教程:运算符-Xor 运算符