我有 extjs 代码,它将创建表单,它允许用户选择要上传到服务器的文件。下面是 extjs 代码。
var fp = new Ext.FormPanel({
renderTo: 'questionnaire_div',
id : 'FileuploadID',
fileUpload: true,
width: 500,
frame: true,
title: 'Upload Audit File',
autoHeight: true,
bodyStyle: 'padding: 10px 10px 10px 10px;',
labelWidth: 50,
defaults: {
anchor: '95%',
allowBlank: false,
msgTarget: 'side'
},
items: [{
xtype: 'fileuploadfield',
id: 'form-file',
emptyText: 'Select PDF file',
fieldLabel: 'PDF',
name: 'file'
}],
buttons: [{
text: 'Upload',
handler: function(){
if(fp.getForm().isValid()){
fp.getForm().submit({
url: 'uploadAuditPDF',
//method : 'POST',
waitMsg: 'Uploading Audit PDF file...',
success: function(fp, o){
msg('Success', 'Processed file "'+o.result.file+'" on the server');
},
failure : function() {
alert('Uploading Audit PDF file failed...');
}
});
}
}
}]
});
下面是接受请求并将文件存储在数据库中的代码。
@RequestMapping(value="/uploadAuditPDF", method = RequestMethod.POST)
public @ResponseBody String uploadAuditPDF(WebRequest request, FileUploadBean uploadItem, BindingResult result){
if (result.hasErrors()){
for(ObjectError error : result.getAllErrors()){
return "{\"success\":false}";
}
if(uploadItem.getFile() != null){
String fileName = uploadItem.getFile().getOriginalFilename();
byte[] file = uploadItem.getFile().getBytes();
QuestionnaireHandler questionnaireHandler = new QuestionnaireHandler();
try{
questionnaireHandler.saveFileAttachment(fileName, file);
}catch (Exception ex) {
throw new VDSQRuntimeException(PropertiesReader.getValue(Constants.ERROR_GENERIC));
}
}else{
return "{\"success\":false}";
}
return "{\"success\":true}";
}
这里我的问题是即使文件上传功能可以正常工作。但是响应,即成功字符串没有到达 ExtJS 端,因此在 extjs 形式中总是失败回调函数正在执行。
failure : function() {
alert('Uploading Audit PDF file failed...');
}
谁能帮助如何向用户发送响应以传达文件上传成功或失败的状态?