js的簡單模板解析

來源:互聯網
上載者:User

在編程中總是會遇見很多動態產生的東西,一般我們都是通過簡單的html拼接起來的

function createHtml(name, phone, addr, email, imageSrc){        var html = '';        html += '<div class=personInfo>'        html += '<p>Name: ' + name + '</p>';        html += '<p>Phone: ' + phone + '</p>';        html += '<p>Addr: ' + addr + '</p>';        html += '<p>Email: ' + email + '</p>';        html += '<img src="' + imageSrc + '">';        html += '</div>'        return html;    }

但是其實我們可以通過使用Regex來進行簡單的替換,從而實現模板解析

<script type="template" id="template">    <h2>      <a href="{{href}}">        {{title}}      </a>    </h2>    <img src="{{imgSrc}}" alt="{{title}}"></script>

 function replace(obj){            var t, key, reg;            for(key in obj){                reg = new RegExp('{{' + key + '}}', 'ig');                t = (t || template).replace(reg, obj[key]);            }            return t;        }

來一份簡單的原始碼:

<!doctype html><html><head>   <meta charset=utf-8>   <title>Simple Templating</title></head><body>     <div class="result"></div>    <script type="template" id="template">    <h2>      <a href="{{href}}">        {{title}}      </a>    </h2>    <img src="{{imgSrc}}" alt="{{title}}"></script><script type="text/javascript">    var data = [        {            title : 'php web appliaction',            href : 'http://www.baidu.com',            imgSrc : 'http://www.baidu.com'        },        {            title : 'js 權威指南',            href : 'http://www.qq.com',            imgSrc : 'http://www.qq.com'        }];    var template = document.querySelector('#template').innerHTML,        result = document.querySelector('.result');    function _template(template, data){        var i = 0,            len = data.length,            fragment = '';        function replace(obj){            var t, key, reg;            for(key in obj){                reg = new RegExp('{{' + key + '}}', 'ig');                t = (t || template).replace(reg, obj[key]);            }            return t;        }        for(; i < len; i++){            fragment += replace(data[i]);        }        return fragment;    }    console.log(_template(template, data));</script></body></html>


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.