zoukankan      html  css  js  c++  java
  • jquery-Ajax请求用例码

            $.ajax({
                        type:"post",
                        url: 'domain’,
                        success:function(data){
                       console.log(data);
                        } ,
                        dataType: "json",
                        async:false
                    });

    警告:Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check http://xhr.spec.whatwg.org/.

    问题是永远不建议用 async:false ---->设置为:

          $.ajax({
                        type:"post",
                        url: 'domain’,
                        success:function(data){
                       console.log(data);
                        } ,
                        dataType: "json",
                        async:true
                    });

    修改异步后,解决;

  • 相关阅读:
    php数组·的方法1-数组的操作
    第十一章:DOM扩展
    第十章:DOM
    hxq的库
    第八章:BOM
    第七章:函数表达式2
    第七章:函数表达式
    第五章:引用类型(一)-Object和Array
    舌尖上的程序猿
    计算矩阵运算的乘法次数
  • 原文地址:https://www.cnblogs.com/q1104460935/p/6911719.html
Copyright © 2011-2022 走看看