谷歌瀏覽器chrome console 發送POST/GET請求


打開chrome 開發者工具
登錄你訪問的系統,復制你后台系統提供的url
在Console中輸入如下代碼 可發送http post/get請求

POST請求:

//方法一:
var url = "/dict/test";
var params = {advertiserUid: 1232131, advertiserWeiboNickname: "18"};
var xhr = new XMLHttpRequest();
xhr.open("POST", url, true);
xhr.setRequestHeader("Content-Type", "application/json");
xhr.onload = function (e) {
  if (xhr.readyState === 4) {
    if (xhr.status === 200) {
      console.log(xhr.responseText);
    } else {
      console.error(xhr.statusText);
    }
  }
};
xhr.onerror = function (e) {
  console.error(xhr.statusText);
};
xhr.send(JSON.stringify(params));

//方法二:
var url = "/dict/test";
var params = "score=5&abc=6";
var xhr = new XMLHttpRequest();
xhr.open("POST", url, true);
xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded"); 
xhr.onload = function (e) {
  if (xhr.readyState === 4) {
    if (xhr.status === 200) {
      console.log(xhr.responseText);
    } else {
      console.error(xhr.statusText);
    }
  }
};
xhr.onerror = function (e) {
  console.error(xhr.statusText);
};
xhr.send(params);

 

GET請求:

 1 var url = "/v1/query/listDicts?types=userType,userStatus";
 2 var xhr = new XMLHttpRequest();
 3 xhr.open("GET", url, true);
 4 xhr.onload = function (e) {
 5   if (xhr.readyState === 4) {
 6     if (xhr.status === 200) {
 7       console.log(xhr.responseText);
 8     } else {
 9       console.error(xhr.statusText);
10     }
11   }
12 };
13 xhr.onerror = function (e) {
14   console.error(xhr.statusText);
15 };
16 xhr.send(null);

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM