★ Ajax

2020-05-28  本文已影响0人  行走的蛋白质
Ajax 一图解所有
Ajax 是什么

Ajax 的使用
let xhr = null
if(window.XMLHttpRequest) {
    xhr = new XMLHttpRequest()
} else { // IE6, IE5 
    xhr = new ActiveXObject("Microsoft.XMLHTTP")
}
/*
 * method: 请求的类型 GET POST 等
 * url: 文件在服务器上的位置 
 * async: 表示要不要执行异步操作
 */
xhr.open(method, url, async) // 初始化一个请求
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded') // 设置 http 请求头信息
// 'Content-type', 'application/x-www-form-urlencoded' 表示客户端提交给服务器的文本内容的编码方式是 url 编码
xhr.send(string) // 发送请求 string 应用于 post 请求发送数据
readyState
status
常见状态码
上一篇下一篇

猜你喜欢

热点阅读