0

我有这个代码:

    sendData: function(){
        var me = this;
        this.getForm().submit({
            url: me.action,
            method: 'POST',
            success: function(form,action){
                if(action.result.success === true){
                    Ext.create('cp.view.ui.AlertOk',{mensaje:action.result.msg}).showDialog();
                    me.up('decoratorForm').close();
                    Ext.ComponentQuery.query('gestionPaciente')[0].getStore().load();                 
                }else{
                    Ext.create('cp.view.ui.AlertErr',{mensaje:action.result.msg}).showDialog();
                }
            }
        });
    } 

当操作成功时,'action.result.success'为真,并显示对话框。但是,当为假时,不显示对话框。返回的 json 字符串为:

{"success":false,"msg":"El dni ingresado ya existse y se encuentra activo."}

编写 json 字符串的 PHP 代码是:

$m = array('success' => false, 'msg' => 'El dni ingresado ya existe y se encuentra activo.');
die(json_encode($m));

有任何想法吗 ?.

4

1 回答 1

2

尝试failure调用选项中的回调submit

于 2013-06-08T12:28:51.170 回答