This is my ajax request for submitting excel file when i am importing file in chrome its successfully imported and but when i am uploading with firefox its showing me error without any exception on server side.
jQuery.ajax({
type: 'POST',
enctype: 'multipart/form-data',
url: 'newBid/importPricing',
dataType: 'json',
method: 'POST',
processData: false,
contentType: false,
cache: false,
data: frmData,
error: function(jqXHR, status, error) {
//console.debug('error', jqXHR, status);
alert('Problem in import pricing: ' + error.responseText);
if (console) {
console.error('Problem in import pricing', status, error.responseText);
}
showErrorDetail(jqXHR);
$(".buildtopia-top-ajaxloader").attr("style", "display: none;");
},
success: function(result) {
if (result != null) {
//console.log('data', Object.keys(data));
//$dialog.dialog('open');
$('#importError').empty();
showErrorDetail(result);
$dialog.dialog("option", "height", 520);
$dialog.dialog("option", "position", {
my: "center",
at: "center",
of: window
});
} else {
$dialog.dialog('close');
$(".success").attr("style", "text-align: center; display:block;");
}
}
});
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…