0

このコードはstapler()関数を呼び出すはずですが、代わりに空白のページが表示されます

Function stapler(){
    Ext.Msg.show({
        title: 'Milton',
        msg: 'Have you seen my staplersirji?',
        buttons: {
            yes: true,
            no: true,
            cancel: true
        }
    });
} 
Ext.onReady(stapler());

ページでダイアログ ボックスが開いていません。しかし、インラインを実行すると機能します。

4

3 に答える 3

3

Ext.onReady関数への参照が必要です。代わりに、関数を実行して結果を渡します。この場合はundefined.

あなたがしたい: Ext.onReady(stapler);

于 2013-10-10T13:32:01.757 に答える
1

関数の大文字の「F」を小文字の「f」に変更

function stapler(){
    Ext.Msg.show({
        title: 'Milton',
        msg: 'Have you seen my staplersirji?',
        buttons: {
            yes: true,
            no: true,
            cancel: true
        }
    });
} 
Ext.onReady(stapler());
于 2013-10-10T13:36:15.027 に答える