webveuje/javascript/21 http请求.md

17 lines
217 B
Markdown
Raw Normal View History

2020-12-25 09:35:21 +08:00
# xhr
var xhr = new XMLHttpRequest()
xhr.open(method,"url,是否同步)
xhr.open(body)
```javascript
xhr.open("get","url",false)
xhr.send(null)
// xhr.status 状态码
// xhr.responseText 后台返回内容
```