EmberJS:找不到房产'行动'

时间:2012-11-12 16:34:22

标签: ember.js handlebars.js pre-compilation

我正在使用Emebr JS的入门套件,并在应用程序模板中添加了一个带{{action hello}}的简单锚标记。

我正在使用把手预编译器预编译模板。当我试图运行它时,它会抛出一个错误。

未捕获错误:无法找到属性“操作”

以前我曾经用 ember-1.0.pre.js 做同样的事情,这很好。但是当我包含新的ember库( ember-1.0.0-pre.2.js )时,就会抛出这个错误。

在这两种情况下,我使用 handlebars-1.0.rc.1.min.js

任何人都可以帮我解决问题。下面列出了我正在使用的把手和库的详细信息。

使用把手预编译器编译的模板。 application.handlebars

<h1>Hello from Ember.js</h1> 
<a {{action hello}}>Say Hello!</a>

我的HTML页面:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  <script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.2.min.js"><\/script>')</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="handlebars/compiled/views.handlebars.js"></script>

  <script src="js/app.js"></script>

views.handlebars.js包含已编译的把手。

App.js:

var App = Ember.Application.create();

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

App.Router = Ember.Router.extend({
  root: Ember.Route.extend({
    index: Ember.Route.extend({
      route: '/'
    }),
    hello: function() {
        console.log("Hello and Welcome");
    }
  })
})

App.initialize();

2 个答案:

答案 0 :(得分:5)

在为ember预编制手柄视图时,您需要使用Ember.Handlebars,而不是Handlebars。我怀疑这可能是问题。

此处有更多讨论:Emberjs Handlebars precompiling

答案 1 :(得分:1)

感谢您的链接,但我开始使用ember-precompile而不是Handlebars预编译。您可以在https://github.com/gabrielgrant/node-ember-precompile

找到ember-precompile

此模块使用较旧的把手和ember库,在运行之前必须将库升级到最新版本然后再运行它。可以在“index.js”中修改库的路径。添加最新库和修改“index.js”对我有用。