Ember计算属性_super

时间:2016-02-07 20:39:40

标签: javascript ember.js

我想知道是否有办法获取计算属性的_super

例如:

controllers/core-controller.js

export default Controller.extend({
    myAttribute: computed(function() {
        return {
            bar: this.get('bar')
        };
    });
});

controllers/my-controller.js

import CoreController from 'controllers/core-controller';

export default CoreController.extend({
    myAttribute: computed(function() {
        let super = this.get('_super') //I'm trying to get the myAttribute object from the CoreController
        return merge(super, { foo: 'foo' });
    });
});

最好的方法是什么?

感谢。

2 个答案:

答案 0 :(得分:5)

您可以致电this._super(...arguments)

import CoreController from 'controllers/core-controller';

export default CoreController.extend({
    myAttribute: computed(function() {
        let superValue = this._super(...arguments);
        return merge(superValue, { foo: 'foo' });
    });
});

还在这个演讲中进行了演示:https://ember-twiddle.com/dba33b9fca4c9635edb0

答案 1 :(得分:0)

您可以在初始化期间定义属性:

export default CoreController.extend({
  defineMyAttribute: Ember.on('init', function() {
    const superValue = this.get('myAttribute');

    Ember.defineProperty(this, 'myProperty', Ember.computed(function() {
      return merge(superValue, { foo: 'foo' });
    }));
  })
})

警告:在初始化期间,您只能获得superValue次。如果myAttribute有依赖关系,它可以重新计算,但它总是从超类中获取原始值以进行合并,而不是更新的。