美文网首页JS
浏览器控制台模拟跨域

浏览器控制台模拟跨域

作者: 花伤情犹在 | 来源:发表于2022-05-19 11:18 被阅读0次
    var xhr = new XMLHttpRequest();
    xhr.open('OPTIONS', 'http://127.0.0.1:8000/hello');
    xhr.send();
    xhr.onload = function(e) {
      var xhr = e.target;
      console.log(xhr.responseText);
    }
    

    相关文章

      网友评论

        本文标题:浏览器控制台模拟跨域

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