1. 传统表单提交与AJAX比较

1.1 Form表单

  1. <form action="/form.html" method="post">
  2. <input type="text" name="username" placeholder="username" />
  3. <input type="password" name="password" placeholder="password" />
  4. <input type="submit" />
  5. </form>
  • 它支持持GET和POST类型
  • 提交数据后页面会刷新,用户体验差

1.2 AJAX

  • 概念
    AJAX = Asynchronous JavaScript and XML (异步的JavaScript 和 XML)
  • 使用内置的 XMLHttpRequestfetch 对象,实现和服务器的交互
  • 交互数据时不需要刷新数据,用户体验好

1.2.1 XMLHttpRequest

GET 请求
  • 创建对象
  • 配置参数
  • 绑定事件
  • 发送请求
  1. let xhr = new XMLHttpRequest()
  2. xhr.open('GET', url, true)
  3. xhr.onload = function(){}
  4. xhr.send()

方法1

  1. let url = 'http://xxx.xxx.com/api/blog/list'
  2. let xhr = new XMLHttpRequest()
  3. xhr.open('GET', url, true)
  4. xhr.onreadystatechange = () => {
  5. if (xhr.readyState === 4) {
  6. if ((xhr.status >= 200 && xhr.status < 300) || xhr.status === 304) {
  7. console.log(JSON.parse(xhr.responseText))
  8. } else {
  9. console.log('数据错误')
  10. }
  11. }
  12. }
  13. xhr.onerror = () => {
  14. console.log('网络异常')
  15. }
  16. xhr.send()

方法2

  1. let url = 'http://xxx.xxx.com/api/blog/list'
  2. let xhr = new XMLHttpRequest()
  3. xhr.open('GET', url, true)
  4. xhr.onload = () => {
  5. if ((xhr.status >= 200 && xhr.status < 300) || xhr.status === 304) {
  6. console.log(xhr.response)
  7. } else {
  8. console.log('数据错误')
  9. }
  10. }
  11. xhr.onerror = () => {
  12. console.log('网络异常')
  13. }
  14. xhr.send()

POST 请求
  1. let url = 'http://xxx.xxx.com/api/user/login'
  2. let xhr = new XMLHttpRequest()
  3. xhr.timeout = 3000 // 设置请求超时时间
  4. xhr.open('POST', url, true)
  5. xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded')
  6. xhr.onload = () => {
  7. if ((xhr.status >= 200 && xhr.status < 300) || xhr.status === 304) {
  8. console.log(JSON.parse(xhr.responseTest))
  9. } else {
  10. console.log('数据错误')
  11. }
  12. }
  13. xhr.ontimeout = () => {
  14. console.log('请求超时')
  15. }
  16. xhr.onerror = () => {
  17. console.log('网络异常')
  18. }
  19. xhr.send('username=layouwen&password=123456')

简单的封装

  1. const request = (url, params, onsuccess, onerror) => {
  2. url = url + '?' + Object.entries(params).map(arr=>arr[0] + '=' + arr[1]).join('&')
  3. let xhr = new XMLHttpRequest()
  4. xhr.open('POST', url, true)
  5. xhr.onload = () => {
  6. if (xhr.status === 200 || xhr.status === 304) {
  7. onsuccess(JSON.parse(xhr.responseText))
  8. } else {
  9. onerror()
  10. }
  11. }
  12. xhr.onerror = onerror
  13. xhr.send()
  14. }
  15. request('http://www.xxx.com/api/user/login', {
  16. username: 'layouwen',
  17. passowrd: '123456'
  18. }, data => {
  19. console.log('请求成功', data)
  20. }, () => {
  21. console.log('网络异常')
  22. })

1.2.2 Post请求编码方式

两个常用的

application/x-www-form-urlencoded

  • 参数变为 key1=value1&key2=value2 的形式

multipart/form-data

  • 一般用于上传文件使用

multipart/form-data
  1. let formData = new FormData()
  2. formData.append('username', 'layouwen')
  3. formData.appedn('password', '123456')
  4. let url = 'http://www.xxx.com/api/user/login'
  5. let xhr = new XMLHttpRequest()
  6. xhr.open('POST', url, true)
  7. xhr.onload = () => {
  8. if (xhr.status === 200 || xhr.status === 304) {
  9. console.log(JSON.parse(xhr.responseText))
  10. } else {
  11. console.log('接口异常')
  12. }
  13. }
  14. xhr.send(formData)

1.2.3 fetch

GET
  1. let url = 'http://www.xxx.com/api/blog/list'
  2. fetch(url).then(response => response.json()).then(data => {
  3. document.body.innerText = data.results[0].weather_data[0].weather
  4. })

POST
  1. let url = 'http://www.xxx.com/api/user/login'
  2. let data = {
  3. username: 'layouwen',
  4. password: '123456'
  5. }
  6. fetch(url, {
  7. method: 'POST',
  8. body: Object.entries(data).map(arr=>arr[0] + '=' + arr[1]).join('&')
  9. headers: {
  10. 'Content-Type': 'application/x-www-form-urlencoded'
  11. }
  12. }).then(res=>res.json()).catch(error => {
  13. console.log('Error', error)
  14. }).then(response => {
  15. console.log('Success', response)
  16. })

更多用法 https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API/Using_Fetch

2. 双工通信

2.1 轮询

每隔一段时间发一次请求

  • 发请求,立即响应,返回空
  • 发请求,立即响应,返回新数据
  • 发请求,立即响应,返回数据为空
  • 发请求,立即响应,返回数据为空
    ……

gitee案例 chat-xhr-poll

2.2 长轮询(Comet)

客户端

  • 发请求,等待响应
  • 当响应时,再次发送请求

服务端

  • 请求到来,如果没新数据,则不发
  • 当有新数据,需要通知客户端,再响应

gitee案例 chat-comet

2.3 WebSocket

gitee案例 chat-websocket