General | |
request url | 请求的访问路径 |
request method | get/post/put/delete |
status code | 服务器响应状态200 成功 |
remote address | 远程服务器地址 |
referrer policy | |
request | |
accept | 允许返回的数据流格式,如果不是支持的格式406 |
accept-encoding | 允许返回的编码 |
accept-language | 语言 |
cache-control | 缓存机制 |
connection | 持久链接 |
cookie | 用户标识, |
host | 请求的目地的,IP和端口 |
sec-ch-ua | 浏览器信息 |
sec-ch-ua-mobile | 是否移动设备 |
sec-Fetch-Dest | 请求的目的地,即如何使用获取的数据 |
sec-Fetch-mode | 请求模式 |
sec-Fetch-site | 发起者和服务器之前的关系none |
user-agent | 浏览器类型及版本、操作系统及版本、浏览器内核、等信息的标识 |
referrer | 来源 |
console
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://localhost:8080/data');
xhr.send(null);
参考
https://blog.csdn.net/u012375924/article/details/82806617