為了提升用戶體驗,一般我們采用ajax加載數(shù)據(jù)然后根據(jù)數(shù)據(jù)渲染html,渲染html可以使用前端渲染和服務(wù)器端渲染。

前端渲染

   使用前端模版引擎或MVC框架,例如underscore.js的template或者是使用angular.js等框架,當(dāng)然也可以不用任何框架自己拼接html。

Android培訓(xùn),安卓培訓(xùn),手機(jī)開發(fā)培訓(xùn),移動開發(fā)培訓(xùn),云培訓(xùn)培訓(xùn)

<!DOCTYPE html><html>
    <head>
        <title>underscore.js的template渲染html</title>
    </head><body><div id="content"></div><script src="~/static/js/lib/jquery-3.1.1.js"></script><script src="http://www.css88.com/doc/underscore/underscore.js"></script><script>
    var data = { name: 'john', age: "18" }    var compiled = _.template("<p>姓名: <%= name %></p><p>年齡: <%= age %></p>");
    $("#content").append(compiled(data));</script></body></html>

延伸閱讀

學(xué)習(xí)是年輕人改變自己的最好方式-Java培訓(xùn),做最負(fù)責(zé)任的教育,學(xué)習(xí)改變命運(yùn),軟件學(xué)習(xí),再就業(yè),大學(xué)生如何就業(yè),幫大學(xué)生找到好工作,lphotoshop培訓(xùn),電腦培訓(xùn),電腦維修培訓(xùn),移動軟件開發(fā)培訓(xùn),網(wǎng)站設(shè)計培訓(xùn),網(wǎng)站建設(shè)培訓(xùn)學(xué)習(xí)是年輕人改變自己的最好方式