在EmberJS的主页上有简短的代码片段:
App.Person = DS.Model.extend({
firstName: DS.attr('string'),
lastName: DS.attr('string'),
fullName: function() {
return this.get('firstName') +
" " + this.get('lastName');
}.property('firstName', 'lastName')
});
App.peopleController = Em.ArrayController.create({
content: App.Person.find()
});
现在当我尝试构建这个时,我得到一个DS未定义?我确实包含了Handlebars,并且通过源代码查找DS无法找到定义。
网络上的其他示例不使用DS,但是Em,但这些示例相当陈旧(至少在互联网时代)。我究竟做错了什么?我错过了什么?