2023-03-22
xhr ○
ajax 常见请求方式有哪些
● GET
○表示向服务器获取资源
●POST
○表示向服务器提交信息,通常用于产生新的数据,比如注册
●PUT
○表示希望修改服务器的数据, 通常用于修改某数据
●DELETE
○表示希望删除服务器的数据
●OPTIONS
○发生在跨域的预检请求中,表示客户端向服务器申请跨域提交
ajax 中 get 和 post 请求携带参数的方式
●GET: 直接拼接在请求路径后, 以 ? 间隔, 使用 key=value 的形式书写, 当有多个参数的时候用 & 连接
const xhr = new XMLHttpRequest()
xhr.open('GET', 'http://localhost:8888/test/third?name=QF666&age=18')
xhr.send()
xhr.onload = function () {
let res = JSON.parse(xhr.responseText)
console.log(res)
}
●POST
○在请求体内携带参数(其实就是 send 小括号内部)
○并且需要设置请求头内部的 content-type
■如果参数为 查询字符串, 需要添加:
●'xhr.setRequestHeader('content-type', 'application/x-www-form-urlencoded')'
■如果参数为 JSON 字符串, 需要添加:
●'xhr.setRequestHeader('content-type', 'application/json')'
const xhr = new XMLHttpRequest()
xhr.open('POST', 'http://localhost:8888/test/fourth')
xhr.setRequestHeader('content-type', 'application/x-www-form-urlencoded')
xhr.send('name=QF666&age=18')
xhr.onload = function () {
let res = JSON.parse(xhr.responseText)
console.log(res)
}
上一篇:ajax状态码有哪些?
开班时间:2021-04-12(深圳)
开班盛况开班时间:2021-05-17(北京)
开班盛况开班时间:2021-03-22(杭州)
开班盛况开班时间:2021-04-26(北京)
开班盛况开班时间:2021-05-10(北京)
开班盛况开班时间:2021-02-22(北京)
开班盛况开班时间:2021-07-12(北京)
预约报名开班时间:2020-09-21(上海)
开班盛况开班时间:2021-07-12(北京)
预约报名开班时间:2019-07-22(北京)
开班盛况Copyright 2011-2023 北京千锋互联科技有限公司 .All Right 京ICP备12003911号-5 京公网安备 11010802035720号