浏览器|如何在浏览器控制台进行post请求

浏览器|如何在浏览器控制台进行post请求

【浏览器|如何在浏览器控制台进行post请求】chrome 按F12打开控制台 执行下面脚本
var url = \"https://www.test.com/Admin/testpost\";
var params = {id:\"1\"name:\"q\";
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));