drq231358 2012-03-02 23: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 18:29
    关注

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

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

报告相同问题?

悬赏问题

  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿