服务器之家

服务器之家 > 正文

BaiduTemplate模板引擎使用示例(附源码)

时间:2020-04-14 13:45     来源/作者:Chevin

1、新建项目,asp.net 空Web应用程序

BaiduTemplate模板引擎使用示例(附源码)

添加data,js,styles,templates文件夹,添加baiduTemplate.js,jquery.js,bootstrap.css

BaiduTemplate模板引擎使用示例(附源码)

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,内容如下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<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页面,并添加引用

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%@ 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>

预览效果:

BaiduTemplate模板引擎使用示例(附源码)

源码下载

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持服务器之家!

原文链接:http://www.cnblogs.com/swanchen/p/6189369.html

相关文章

热门资讯

沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意
沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意 2019-07-07
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
返回顶部