我想知道是否可以获取计算属性的_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' });
    });
});


最好的方法是什么?

谢谢。

最佳答案

您可以通过调用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

09-17 23:15