无法在Ember.js中绑定到ApplicationController

时间:2013-01-14 21:28:39

标签: ember.js

我刚刚开始使用Ember.js构建测试应用程序。我正在尝试绑定到ApplicationController,以便我的名字在application模板中呈现。我无法让它发挥作用!

我正在关注http://emberjs.com/guides/templates/handlebars-basics/

中提供的信息

以下是我正在使用的代码:

<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
    <link href="/Content/css/style.css" rel="stylesheet" type="text/css" />
    <script src="/Scripts/lib/jquery.js" type="text/javascript"></script>
    <script src="/Scripts/lib/handlebars.js" type="text/javascript"></script>
    <script src="/Scripts/lib/ember.js" type="text/javascript"></script>
</head>
    <body>
        <script type="text/x-handlebars">
            <h1>Welcome to my test application</h1>
            <div>
                Hello, <strong>{{firstName}} {{lastName}}</strong>!
            </div>    
        </script>
        <script type="text/javascript">
            $(function () {
                MyApp = Ember.Application.create();
                MyApp.ApplicationController = Ember.Controller.extend({
                    firstName: "Jones",
                    lastName: "Ross"
                });
            });
        </script>
    </body>
</html>

输出结果为:

Welcome to my test application
Hello, !

firstNamelastName似乎是undefined!没有错误产生。

1 个答案:

答案 0 :(得分:0)

这对我来说很好。请参阅this JSBin

一个注意事项:

  

您不需要将应用程序包装在jQuery ready回调中。 Ember将自动推迟初始化,直到DOM准备就绪。