dso0139 2014-02-02 18:07
浏览 29
已采纳

如果请求成功,如何确保我的ajax请求后的代码只运行?

I have a link, delete, that removes an item from an array, and then removes a row from a table on my html page.

It runs the ajax request first to amend the array, then removes the row. If for some reason the ajax request was to fail then the html table row would still be deleted I think.

Is there a way to make sure subsequent code afer the ajax request only runs if it is successful? I tried moving it into the success function but then it didn't run at all..

This is how I have it set up at the moment...

$(document).ready(function () { //delete 
    $(document).on("click", "a[class='del']", function () {
        var ID = $(this).attr("id"); //<----- get the ID of the column      
        $.ajax({
            //contentType: "text",
            url: 'proDel.php', //the url you are sending datas to which will again send the result
            type: 'GET', //type of request, GET or POST
            dataType: 'json', // jQuery will parse the response as JSON
            data: 'val1=' + ID, //Data you are sending 
            success: function (data) {
                // do nothing, array was amended in php file                       
            }
        })

        //Code here that deletes the table row(runs whether the array was changed or not!!
    })
})
  • 写回答

5条回答 默认 最新

  • dsjpik057730 2014-02-02 18:51
    关注

    The problem might be that you are not returning valid JSON.

    You were correct in thinking that you should move the code that deletes the table row into the success callback. You say you tried that, but the success callback was not executed.

    Since you specify dataType: 'json', jQuery will attempt to parse the response body into a JavaScript object (or array or null). If the response body cannot be parsed (because it is not valid JSON), jQuery will call the error callback, rather than the success callback.

    An empty response body is not valid JSON. You must at least return "null". Or if you do not plan on returning any data, just change to dataType: 'text'.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵