0

いくつかの関数が定義されている FormPanel (以下を参照) があります。ある関数を別の関数から呼び出す必要がありますが、呼び出している関数が未定義であるというエラーが発生します。OnMyButtonTap 関数から ShowInspections を呼び出すと動作します LoginOk 関数から ShowInspections を呼び出しても動作しません 途方に暮れています これはスコープの問題だと思いますが、Sencha が新しいので本当に助けが必要です。

Ext.define('MyApp.view.LoginPanel', {
extend: 'Ext.form.Panel',
alias: 'widget.Login',

config: {
    items: [
        {
            xtype: 'fieldset',
            height: 226,
            width: 440,
            title: 'Enter Login Information',
            items: [
                {
                    xtype: 'textfield',
                    id: 'userid',
                    label: 'User ID',
                    labelWidth: '40%',
                    required: true
                },
                {
                    xtype: 'textfield',
                    id: 'pswd',
                    label: 'Password',
                    labelWidth: '40%',
                    required: true
                }
            ]
        },
        {
            xtype: 'button',
            height: 86,
            itemId: 'mybutton',
            text: 'Login'
        }
    ],
    listeners: [
        {
            fn: 'onMybuttonTap',
            event: 'tap',
            delegate: '#mybutton'
        }
    ]
},

onMybuttonTap: function(button, e, options) {
    doLogin(Ext.getCmp('userid').getValue(),Ext.getCmp('pswd').getValue(),this.LoginOk,this.LoginFail,this.LoginError);

},

LoginOk: function() {
    //
    // this function is called from doLogin and it works
    //
    //GetInspections('01/01/2011','12/31/2012','','',this.ShowInspections,this.LoadDataFail,this.LoadDataError);
    // the function GetInspections does work, but does not call the "ShowInspections" function
    this.ShowInspection);  // directly calling this function does NOT work either
},

LoginFail: function() {
    Ext.Msg.alert('Invalid User ID and/or Password.');

},

LoginError: function() {
    Ext.Msg.alert('Login Error!');
},

LoadDataFail: function() {
    Ext.Msg.alert('No Inspections found.');
},

LoadDataError: function() {
    Ext.Msg.alert('Error Loading Inspections.');
},

ShowInspections: function() {
    Ext.Msg.alert('got inspections');
}

});

4

2 に答える 2

0

this.LoginOk()、this.LoginFail() など、および this.ShowInspections() として変更する必要があるすべての場所で () を見逃しました

于 2012-09-06T11:55:43.460 に答える
0

現在のコードにはいくつかのタイプミスがあります。

this.ShowInspection); 

次のように読む必要があります

this.ShowInspections(); 

それはあなたの問題ではありませんか?

于 2012-06-20T09:48:15.287 に答える