JavaScript框架 Ember.js

jopen 13年前

Ember可用于创建大型的Web应用程序。它提供了一个标准的应用程序基础架构,能够帮助开发人员在其基础上快速开发出自己的应用。

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')  });

项目主页:http://www.open-open.com/lib/view/home/1331390975296