当前位置:   article > 正文

AJAX请求在微信环境报错:NetworkError: Failed to execute 'send' on 'XMLHttpRequest': Failed to load

networkerror: failed to execute 'send' on 'xmlhttprequest': failed to load

这里记录一次踩到的坑,希望可以帮到别人
情景:
代码如下:
ajax请求部分就可以了

$(function () {
    $('.test_submitorder').click(function()
    {

        var pid = $("#goods_id").val();
        var spec_str = $("#carPrefixBTN").text();
        var spec_id =  $("#carPrefixBTN").attr("spec_id");
        var mobile =  $("#userTel").val();
        var type =  $("#type").val();
        var carnumber = $("#carNUM").val();
        $.ajax({
            url: '__APP__?m=Shopping&a=ajaxSubmitorder',
            cache: false,
            async: false,
            type: 'POST',
            data: {'mobile':mobile ,'carnumber':carnumber,'pid': pid,'spec_id':spec_id, 'spec_str':spec_str,'type':type},

            beforeSend:function()
             {  
                 //触发ajax请求开始时执行
                $('#btnRecharge').text('提交订单中...');
                $('#btnRecharge').removeClass('test_submitorder');
            },                
            success: function (msg) 
            { 
                if(msg.status==1)
                {
                    window.location.href = ' __APP__?m=Pay&a=index' + '&oid='+msg.data;
                }
                else
                {
                    alert(msg.status);
                    alert('网络繁忙,请稍后再试...');
                    $('#btnRecharge').text('立刻办理.');
                    $('#btnRecharge').addClass('test_submitorder');
                }
            } 
            ,
            error: function (msg) 
            { 
                console.log(msg);
                alert('网络繁忙...');
                $('#btnRecharge').text('立刻办理.');
                $('#btnRecharge').addClass('test_submitorder');
            },
            complete: function(msg)
            {   
                    //ajax请求完成时执行
                if(msg.status==1)
                {
                    $('#btnRecharge').text('立刻办理.');
                    $('#btnRecharge').addClass('test_submitorder');
                }
            }                
    });

});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57

是这样的,上方ajax请求在PC端和在手机端用浏览器打开运行的时候,都是正常的,可以正常下单,但是当在微信环境下的时候,就跑到了Error里面,所以,这个问题挺纳闷的。

报错信息如下:

NetworkError: Failed to execute 'send' on 'XMLHttpRequest': Failed to load 'http://ecar.baidu.com/index.php?m=Shopping&a=ajaxSubmitorder
  • 1

这里写图片描述

解决办法

            async: true,//将false改为true
  • 1

参考链接地址:Failed to execute ‘send’ on ‘XMLHttpRequest’

好折腾人啊。。。。。记录一下

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/621863
推荐阅读
相关标签
  

闽ICP备14008679号