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, !
firstName
とlastName
思われるundefined
!エラーは生成されません。