codecamp

EmberJS 模板

模板用于跨多个页面创建标准布局。更改模板时,基于该模板的页面会自动更改。模板提供标准化控件。

应用程序模板

如果您没有在应用程序中定义模板,Ember.js默认会呈现一个应用程序模板。Ember.js模板放置在<script>标记中。您必须至少定义一个占位符:{{outlet}}路由器填写相应的模板。

<script type="text/x-handlebars">
   <div>
      {{outlet}}
   </div>
   <h2>{{App.name}}</h2>
</script>

在上面的代码中,我们使用的是handlebar模板。它在脚本标记中声明,有助于显示应用程序中的名称等属性。

例子

<!DOCTYPE html>
<html>
   <head>
      <title>Emberjs Template</title>
      <!-- CDN's-->
      <script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.1/handlebars.min.js"></script>
      <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.10.0/ember.min.js"></script>
      <script src="https://builds.emberjs.com/tags/v1.10.0-beta.3/ember-template-compiler.js"></script>
      <script src="https://builds.emberjs.com/release/ember.debug.js"></script>
      <script src="https://builds.emberjs.com/beta/ember-data.js"></script>
   </head>
   <body>
      <script type="text/x-handlebars" data-template-name="application">
         <!-- name of the template is application and it is default template -->
         <div>
            {{outlet}}
         </div>
         <!-- call the name value -->
         <h2><i>{{App.name}}</i></h2>
      </script>

      <script type="text/javascript">
         //creating the App varible by the Ember.Application's create() method
         var App = Ember.Application.create()
        //assigning value to the name variable
         App.name = "Hello... Welcome to TutorialsPoint!";
      </script>
   </body>
</html>

输出

让我们执行以下步骤,看看上面的代码如何工作:

  • 将上面的代码保存在template.html文件中

  • 在浏览器中打开此HTML文件。

让我们通过点击以下链接查看一些有关模板的更多详细信息:

EmberJS 对象模型
EmberJS 路由器
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }