我疯了。我看过论坛,问题,答案,没办法得到回调回复! 我的代码:
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}';
但我所有的回复,都是一个带有
的空白页面{成功:真}
没有消息,没有警报,没有回调......
请帮帮忙,真的好疯了!
答案 0 :(得分:2)
standardSubmit: false,//true, <---------
答案 1 :(得分:0)
使用standardSubmit解决:false 有时,简单的事物是看不见的:D 我试过任何办法来解决我的问题,以任何方式改变我的服务器,但我找不到正确的答案。 谢谢弗拉德!