Ember.js 1.7.0 正式版发布,该版本包含 492 commits 。
下载地址:production (min + gzip 120kb) | debug | Handlebars
官方没提供对该版本的详细描述。
Ember是一个雄心勃勃的Web应用程序,消除了样板,并提供了一个标准的应用程序架构的JavaScript框架。
1 2 3 4 5 6 7 8 9 10 11 | MyApp.president = Ember.Object.create({
firstName: "Barack",
lastName: "Obama",
fullName: function() {
return this.get('firstName') + ' ' + this.get('lastName');
}.property('firstName', 'lastName')
});
|
|