美文网首页
http和ajax接口请求

http和ajax接口请求

作者: 刘越姐姐啊 | 来源:发表于2019-07-16 10:04 被阅读0次

    http请求

    $http({ 
      method:  "POST", //请求方式,常用GET、POST 
      url:"", //请求的地址 
      header: {"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}, //响应头部 
      data: {
         "measureTime":2018
       } 
    }).success(function(data){ 
       if (data.code  ==  'N01') {
    
       } 
    }).error(function(){ 
       console.log('http error'); 
    });
    

    资料

    1. http method:HTTP Request Method(十五种)
    2. http header HTTP Header 详解Http Header里的Content-Type

    Ajax请求

    $.ajax({ 
      url:  "/api/1.0/ll/trace/inspectionInfo", //请求的url地址 
      dataType:  "json", //返回格式为json 
      async:  false, //请求是否异步,默认为异步,这也是ajax重要特性 
      data:  JSON.stringify({ 
        //参数值  
        "traceCode": traceCode 
      }), 
      type:  "post",//请求方式 
      success:  function(req) { 
        if(req.code  ==  'N01'){ 
    
        } 
        else  alert("查询失败,请重试!"); 
      }, 
      error:  function() { 
        alert("查询失败,请重试!"); 
      } 
    })
    

    备注

    async-类型:Boolean;默认值: true。默认设置下,所有请求均为异步请求。如果需要发送同步请求,请将此选项设置为 false。注意,同步请求将锁住浏览器,用户其它操作必须等待请求完成才可以执行。

    相关文章

      网友评论

          本文标题:http和ajax接口请求

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