Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
587 views
in Technique[技术] by (71.8m points)

large Excel file Upload using ajax working fine in Chrome not in Firefox

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;");
    }
}

});


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...