drq231358 2012-03-02 15:52
浏览 29
已采纳

AJAX(JQuery)意外地返回错误

I have this Jquery AJAX request to process the creation of Word documents (using PHPWord). The reports are processed and, as far as I am aware, I should not get an error. Whilst the reports are processed, I cannot get the 'data' response from the page, which returns the processed file's name which is needed to provide download links.

The AJAX request looks like this (it is based upon list items with the class 'selected'):

$('.selectionList.unprocessed li.selected').each(function(index) {
    params = 'reportNo=' + ($(this).index() + 1);
    $.ajax({
        url: 'word/export.php',
        data: params,
        dataType: 'script',
        type: 'post',
        success: function(data) { 
            increaseProgressBar();
        },
        error: function(jqXHR, textStatus, errorThrown) {
            increaseProgressBar(); 
            alert('failure ' + textStatus + ' and ' + errorThrown); 
        }
    });
});

increaseProgressBar() just increases the width of the coloured part of a progress bar.

The errors I get in the alert boxes are either:

failure parsererror and SyntaxError: Unexpected identifier

or (both are received seemingly randomly)

failure parsererror and SyntaxError: Unexpected identifier

I attempted to post to this page using a form and that worked fine and the page echoed the correct response.

  • 写回答

1条回答 默认 最新

  • dougang5993 2012-03-05 10:29
    关注

    Very simple solution - I just need to change the dataType from script to text and the rest of it works fine.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?