我有两个控制器:

Ext.define('ParentController', {
    extend: 'Ext.app.ViewController',
    alias: 'controller.parent',
    sayHelloFromChild: function() {
      this.sayHello(); // Uncaught TypeError: this.sayHello() is not a function
    }
});

Ext.define('ChildController', {
    extend: 'ParentController',
    alias: 'controller.child',
    sayHello: function() {
      console.log('Hello);
    }
});


我想在父控制器中调用子方法sayHello();

最佳答案

我只是在煎茶小提琴中测试过。

外观:https://fiddle.sencha.com/#view/editor&fiddle/2r1g

您在console.log('Hello);中存在语法错误。这是个问题。

关于javascript - 如何在父ExtJs(Sencha)中执行子方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55402973/

10-12 07:07