|   今天,我們發(fā)布了 Ember.js 1.0 正式版。記得 Ember.js 的第一個 commit 是在2011年4月30日提交的,到現(xiàn)在已經(jīng)有兩年多的時間。關(guān)于 Ember.js 1.0 正式版的介紹請看官方發(fā)行說明。 Ember是一個雄心勃勃的Web應(yīng)用程序,消除了樣板,并提供了一個標(biāo)準(zhǔn)的應(yīng)用程序架構(gòu)的JavaScript框架。 示例代碼: 
| 01 | MyApp.president = Ember.Object.create({  |  
| 05 |   fullName: function() {  |  
| 06 |     returnthis.get('firstName') + ' '+ this.get('lastName');  |  
| 08 |   // Tell Ember that this computed property depends on firstName  |  
| 10 |   }.property('firstName', 'lastName')  | 
Ember.js 的詳細(xì)介紹:請點這里Ember.js 的下載地址:請點這里
 想通過手機客戶端訪問開源中國:請點這里
 |