POST 请求则需要设置RequestHeader
告诉后台传递内容的编码方式以及在 send 方法里传入对应的值
xhr.open("POST", url, true); xhr.setRequestHeader(("Content-Type": "application/x-www-form-urlencoded")); xhr.send("key1=value1&key2=value2");
var xhr = new XMLHttpRequest(); xhr.open("GET", "http://example.com/", true); xhr.withCredentials = true; xhr.send(null);