7

我从 Ember 开始,只是按照本教程进行操作。我从 Ember.js web 下载了最后一个源代码,我有以下代码:

HTML

<!doctype html>
<html>
 <head>
   <script src="js/libs/jquery-1.7.2.min.js"></script>
   <script src="js/libs/ember-1.0.0-pre.2.min.js"></script>
   <script src="js/libs/handlebars-1.0.0.beta.6.js"></script>
   <script src="js/app.js"></script>
 </head>
 <script type="text/x-handlebars" data-template-name="application">
   Test
 </script>
</html>

应用程序.js

   App = Em.Application.create();

   App.ApplicationView = Em.View.extend({
     templateName: 'application'
   });
   App.ApplicationController = Em.Controller.extend();


   App.Router = Em.Router.extend({
    root: Em.Route.extend({
      index: Em.Route.extend({
        route: '/'
      })
    })
  });

  App.initialize();

这似乎是一个非常简单的例子,但我看不到这两件事:

1)为什么余烬的来源给我这个错误:

Uncaught TypeError: Object prototype may only be an Object or null 

在 ember 代码的第 18 行。

2)如果我定义了模板,为什么我不断收到这个未捕获的错误:

Uncaught Error: <App.ApplicationView:ember143> - Unable to find template "application". 
4

1 回答 1

5

尝试将应用程序模板放在车把之前。

<!doctype html>
<html>
 <head>
   <script type="text/x-handlebars" data-template-name="application">
     Test
   </script>
   <script src="js/libs/jquery-1.7.2.min.js"></script>
   <script src="js/libs/handlebars-1.0.0.beta.6.js"></script>
   <script src="js/libs/ember-1.0.0-pre.2.min.js"></script>
   <script src="js/app.js"></script>
 </head>
</html>
于 2012-11-11T18:04:13.707 回答