我想访问用于从 EmberJS 创建对象实例的类。例如,给定以下示例中 MyWidgetClass 的 实例 ,我想访问该类的 myProperty 属性。
MyWidgetClass = Ember.View.Extend({});
MyWidgetClass.reopenClass({
myProperty: 'hihihi'
});
console.log("The myProperty of MyWidgetClass is ", MyWidgetClass.myProperty);
myWidget = MyWidgetClass.create({});
console.log("The myProperty of the Class of myWidget is ",
myWidget.WHAT_GOES_HERE.myProperty);
我想知道在最后一行代码的 WHAT_GOES_HERE 中放什么。我试过 myWidget._super,myWidget。 原型(prototype) 等
最佳答案
您可以使用 constructor
属性。这是一个 jsFiddle:http://jsfiddle.net/7eJ79/
关于ember.js - 如何访问用于在 Ember 中创建()对象的类的成员?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10691198/