
Ember
thinkingForJoy
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Ember学习(4):计算型属性
英文原址: ddddd ddddd HAT ARE COMPUTED PROPERTIES? In a nutshell, computed properties let you declare functions as properties. You create one by defining a computed pro翻译 2014-05-17 21:16:25 · 1077 阅读 · 0 评论 -
Ember学习(5):计算型属性和使用@each聚合数据
英文原址: ddddd Often, you may have a computed property that relies on all of the items in an array to determine its value. For example, you may want to count all of the todo items i翻译 2014-05-17 21:33:55 · 1352 阅读 · 0 评论 -
Ember学习(1):Ember核心概念
英文原址:http://emberjs.com/guides/concepts/core-concepts/翻译 2014-05-17 08:27:08 · 2380 阅读 · 0 评论 -
Ember学习(2):Ember的命名约定
英文原址: Ember.js uses naming conventions to wire up your objects without a lot of boilerplate. You will want to use these conventional names for your routes, controllers and templates. You c翻译 2014-05-17 10:03:15 · 2320 阅读 · 0 评论 -
Ember学习(3):类和实例
ddddddd CLASSES AND INSTANCESEDIT PAGE To define a new Ember class, call the extend() method on Ember.Object: 1 2 3 4 5 App.Person = Ember.Object.extend({翻译 2014-05-17 19:30:32 · 1036 阅读 · 0 评论 -
Ember学习(6):Observers
英文原址:http://emberjs.com/guides/object-model/observers/翻译 2014-05-17 22:09:29 · 1263 阅读 · 0 评论 -
Ember学习(7):Bindings
英文原址:http://emberjs.com/guides/object-model/bindings/ binding可以在两个属性之间创建一个连接关系,当其中一个变化时,另一个会自动获得变化后的新值。binding可以连接同一个对象的属性,也可以连接不同对象的属性。不像很多其他的框架,binding需要某种特殊的实现,Ember中得binding很容易使用,可以用在任意类型的object之翻译 2014-05-18 11:32:16 · 942 阅读 · 0 评论 -
Ember学习(8):REOPENING CLASSES AND INSTANCES
英文原址:http://emberjs.com/guides/object-model/reopening-classes-and-instances/翻译 2014-05-23 11:03:27 · 962 阅读 · 0 评论