其他分享
首页 > 其他分享> > XHR的方法

XHR的方法

作者:互联网

1.abort()终止当前请求
调用时机:在send()之后
2.setRequestHeader()设置请求头信息

//用在POST方式请求,请求头中的Content-Type字段用来告诉服务器,
//浏览器发送的数据是什么格式的
// xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded")
//对应的数据格式(form表单用的enctype默认就是application/x-www-form-urlencoded)
// xhr.send("username=zjh&age=18")

xhr.setRequestHeader("Content-Type","application/json")
// 对应的数据格式
xhr.send(JSON.stringify({username:'zjh',age:18}))

标签:application,xhr,方法,setRequestHeader,send,Content,XHR,Type
来源: https://blog.csdn.net/qq_45178972/article/details/115419246