码迷,mamicode.com
首页 > 其他好文 > 详细

Handlebars 介绍

时间:2015-10-01 18:02:50      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

最新项目用到了Ember.js前端框架,第一次使用这样的框架,准备国庆节花2天时间,研究一下它的用法。

Ember框架的模板引擎用到了handlebars, 先看国外的一篇介绍文章:An Introduction to Handlebars

手动写了一个测试示例:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
</head>
<body>
    <script id="blogs" type="text/x-Handlebars-template1">
       <div class="entry">
      <h1>{{title}}</h1>
      <div class="body">
        {{body}}
      </div>
    </div>
    </script>
    <div id="temp"></div>
</body>
</html>
<script src="scripts/handlebars-v4.0.2.js"></script>
<script type="text/javascript">
    var context = {
        title: "handlebars introduction",
        body: "handlebar is js template..."
    };
    var template = Handlebars.compile(document.getElementById("blogs").innerHTML);
    document.getElementById("temp").innerHTML = template(context);
</script>

 

Handlebars 介绍

标签:

原文地址:http://www.cnblogs.com/andrewcn/p/4851148.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!