美文网首页
ajax请求

ajax请求

作者: Agneszbaby | 来源:发表于2019-05-15 14:06 被阅读0次
  //ajax请求
    _ajax(url, data, callback) {
        $.ajax({
            async: false, //表示请求是否异步处理
            type: "post", //请求类型
            url: url, //请求的 URL地址
            dataType: "json", //返回的数据类型
            data: data,
            success: function (res) {
                if (callback) {
                    callback(res);
                }
            },
            error: function (err) {
                console.log(err.status + ' : ' + err.statusText);
            }
        });
    }

      _ajax(url,param,function(res){
            console.log(res);
       });

相关文章

  • ajax

    Ajax 1 - 请求纯文本 Ajax 2 - 请求JSON数据 Ajax 3 - 请求Github接口 Ajax...

  • ajax

    特点 ajax ajax入门 ajax请求与发送数据 ajax工具类封装 type:请求类型url:请求地址dat...

  • 2016-08-18 短信接口、ajax请求

    短信接口、ajax请求 ajax请求 $.ajax()方法详解 url type timeout: async: ...

  • HTML5权威指南 | 第五部分 高级功能

    三十二、使用AJAX(上) Ajax起步: 使用Ajax事件: Ajax请求的错误处理: 中止Ajax请求: 三十...

  • 链接

    javascript ajax get 请求 post请求 jqery ajax websocket

  • 用get、post方式发送ajax请求

    get方式发送ajax请求 post方式发送ajax请求

  • jquery AJAX方法

    $ajax()执行异步 AJAX 请求 $.ajaxSetup()为将来的 AJAX 请求设置默认值 $.get(...

  • 使用promise封装ajax请求

    封装一个ajax请求方法: 调用ajax方法,发送请求

  • Promise解析

    Promise使用场景 回调地狱:当你发送一个ajax请求,继而又需要请求一个ajax请求,并且此ajax请求参数...

  • jQuery+Ajax

    Ajax Ajax-HTTP请求 XMLHttpRequest发送请求 XMLHttpRequest取得响应 JS...

网友评论

      本文标题:ajax请求

      本文链接:https://www.haomeiwen.com/subject/qfepaqtx.html