我没有找到任何开始使用 Ember.js 的好文档。请帮助我,这是我从http://emberjs.com/documentation/尝试的一个简单示例,但屏幕上没有显示任何内容。
Error: MyApp is not defined
Javascript:app.js
MyApp.president = Ember.Object.create({
firstName: "Barack",
lastName: "Obama",
fullName: function() {
return this.get('firstName') + ' ' + this.get('lastName');
// Tell Ember that this computed property depends on firstName
// and lastName
}.property('firstName', 'lastName')
});
HTML
<p>
<script type="text/x-handlebars">
The President of the United States is {{MyApp.president.fullName}}.
</script>
</p>
我包含了入门工具包中的所有 JS 文件。