Ember是一个雄心勃勃的Web应用程序,消除了样板,并提供了一个标准的应用程序架构的JavaScript框架。
EmberisaJavaScriptframeworkforcreatigambitiouswebapplicatiosthatelimiatesboilerplateadprovidesastadardapplicatioarchitecture.
示例代码:
MyApp.presidet = Ember.Object.create({ firstName: "Barack", lastName: "Obama", fullName: fuctio() { retur this.get('firstName') + ' ' + this.get('lastName'); // Tell Ember that this computed property depeds o firstName // ad lastName }.property('firstName', 'lastName')});
评论