2

我要疯了。我已经阅读了论坛,问题,答案,没有办法得到回调响应!我的代码:

var myFormTest = new Ext.form.FormPanel({
renderTo: 'divAllegati',
width: 500,
title: 'Allegati',
bodyPadding: '10 10 0',
standardSubmit: true,
items: [{
    xtype: 'textfield',
    fieldLabel: 'Name',
name: 'ciao',
value: 'ciao'
},{
    xtype: 'filefield',
    id: 'form-file',
    emptyText: 'Seleziona un file',
    fieldLabel: 'Allegato',
    name: 'photo-path',
    buttonText: '',
    buttonConfig: {
        iconCls: 'upload-icon'
    }
}],
buttons: [{
    text: 'Save',
handler: function(){
    if (myFormTest.getForm().isValid()) {
        myFormTest.getForm().submit({
        url: '/uploadAllegati',
        waitMsg: 'Caricamento allegati...',
        success: function (form, action) {
            Ext.Msg.alert('Success');
        },
        failure: function (form, action) {
            Ext.Msg.alert('Failure');
        }                                   
            });
    }
    }
}]

});

没有办法获得成功或失败!我的服务器发回这个:

ResponseInfo.ResponseNo := 200;
ResponseInfo.ContentType := 'text/html';
ResponseInfo.ContentText := '{success:true}';

但我得到的只是一个空白页

{成功:真}

没有消息,没有警报,没有回调......

请帮忙,真的要疯了!

4

2 回答 2

2
standardSubmit: false,//true, <---------
于 2013-05-03T11:57:20.137 回答
0

解决了 standardSubmit: false 有时,简单的事情是不可见的 :D 我尝试了任何方法来解决我的问题,以任何方式更改了我的服务器,但我没有找到正确的答案。谢谢弗拉德!

于 2013-05-03T12:14:41.527 回答