如何用原生js发送jsonp请求

JavaScript022

如何用原生js发送jsonp请求,第1张

//    引入进去

<script>

function ajax(options) {

  options = options || {}

  options.type = (options.type || "GET").toUpperCase()

  options.dataType = options.dataType || 'json'

  options.async = options.async || true

  options.timeout=options.timeout||8000//超时处理,默认8s

  var params = getParams(options.data)

  var timeoutFlag=null

  var xhr

  var that=this

  if (window.XMLHttpRequest) {

      xhr = new XMLHttpRequest()

  } else {

      xhr = new ActiveXObject('Microsoft.XMLHTTP')

  }

  xhr.onreadystatechange = function() {

      if(options.dataType === 'json'){

          if (xhr.readyState == 4) {

              window.clearTimeout(that.timeoutFlag)

              var status = xhr.status

              if (status >= 200 && status < 300) {

                  // 如果需要像 html 表单那样 POST 数据,请使用 setRequestHeader() 来添加 http 头。

                  options.success && options.success(xhr.responseText, xhr.responseXML)

              } else {

                  options.fail && options.fail(status)

              }

          }

      } else {

          if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {

              window.clearTimeout(that.timeoutFlag)

              var oScript = document.createElement('script')

              document.body.appendChild(oScript)

              var callbackname = 'ajaxCallBack'

              oScript.src = options.url + "?" +  params+'&callback='+callbackname

              window['ajaxCallBack'] = function(data) {

                  options.success(data)

                  document.body.removeChild(oScript)

              }

          }

      }

  }

  if (options.type == 'GET') {

      xhr.open("GET", options.url + '?' + params, options.async)

      xhr.send(null)

  } else if (options.type == 'POST') {

      xhr.open('POST', options.url, options.async)

      if(options.contentType=="undefined"||options.contentType==null){

          xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded')

          xhr.send(params)

      }else{

          xhr.setRequestHeader('Content-Type', options.contentType)

          xhr.send(JSON.stringify(options.data))

      }

  }

  this.timeoutFlag=window.setTimeout(function(){//计时器,超时后处理

      window.clearTimeout(that.timeoutFlag)

      //options.fail("timeout")

      xhr.abort()

  }.bind(this),options.timeout)

}

function getParams(data) {

  var arr = []

  for (var param in data) {

      arr.push(encodeURIComponent(param) + '=' + encodeURIComponent(data[param]))

  }

  return arr.join('&')

}

</script>

//    使用

<script>

ajax({

    url: "https://xxx.xxx.xxx.xxx/router/rest", //请求地址

    type: 'GET', //请求方式

    async:true,//同步异步设置

    timeout:8000,//超时设置

    data: {

      userName:$("#username").val(),

    phoneNumber:$("#userphone").val(),

    orderType:'8',

    requirementDetail:'',

    method:'homedecapi.decOrder.insertDecOrder',

    orderSource:'无忧居官网PC'

    }, //请求参数

    success: function(response, xml) {

        if(JSON.parse(response).decOrder_insertDecOrder_response){

          // alert("预约成功")

          $("#mypopup").css('display','block')

        }else{

          alert("预约失败")

        }

    },

    fail: function(status) {

        console.log('状态码为' + status) // 此处为请求失败后的回调

    }

})

</script>

场景:从后台请求回来的数据中带有json格式的字符串,需要处理成json对象才能进行操作。JSON.parse():        使用JSON.parse方法来解析json字符串。    报错:      Uncaught SyntaxError: Unexpected token } in JSON at position 30                Uncaught SyntaxError: Unexpected token ' in JSON at position 1           这种报错是由于,json字符串的格式有问题,json字符串中对象的最后一个元素后面不可以再加','逗号了。比如'{ "name": "cxh", "sex": "man",}'使用JSON.parse()就会报错,而且 在json字符串中键值对需要用双引号引起来。 解决方案:使用eval()() 报错:SyntaxError: Unexpected token e in JSON at position 1        由于请求回来的json中带有转义字符,所以才会报这个错误。解决方案:带有转义字符的json字符串使用json        json数据使用JSON.parse()有浏览器是不兼容JSON这个对象的,或者有的里面有JSON.parse解析不了的东西,所以暂时还是使用: eval("("+data+")")         json源数据字符有转义符应该是必须的,你要看解析出来后是否有多余的转义符json转字符串JSON.stringify总体效果还可以: 前导 0 和小数点报错:SyntaxError: JSON.parse: expected ',' or '}' after property value                                       SyntaxError: JSON.parse: unterminated fractional number                                     Uncaught SyntaxError: Unexpected number in JSON at position 25                                     Uncaught SyntaxError: Unexpected token } in JSON at position 26                                             数字不能用 0 开头,比如01,并且你的小数点后面必须跟着至少一个数字。