我正在尝试设置一个非常基本的emberJS应用程序。这是:
<!doctype html>
<html>
<head>
<script src="js/jquery.js"></script>
<script src="js/handlebars-1.0.rc.1.js"></script>
<script src="js/ember.js"></script>
<script>
window.App = Ember.Application.create();
App.ApplicationController = Ember.Controller.extend({
firstName: "Trek",
lastName: "Glowacki"
});
</script>
</head>
<body>
<script type="text/x-handlebars" data-template-name="application">
<div>
Name: {{firstName}} {{lastName}}
</div>
</script>
</body>
</html>
出于某种原因,仅呈现名称:。有关'firstName'和'lastName'为空的任何建议吗?
干杯
答案 0 :(得分:0)
通过更新使用的库来解决问题(参见Sean Keating的回答)