0


前端WebSocket

websocket实际项目开发中客户端(前端)使用websockect主要实现的功能是发送和接收信息而服务端实现接收、转发(负责两个客户端通信类似于一个通信基站)、发送消息功能。

项目中用到的相关技术vue3、vite、js(要通过WebSocket构造函数,创建WebSocket对象)、node.js、ws(是nodejs的一个WebSocket库,可以用来创建服务)

websocket服务端以node.js中使用为例(实际项目开发中可使用其他后端语言如java、python等)

创建相关文件目录

2c84f986c8214042b37a2cd69a302617.png

server.js代码

  1. //服务(服务类似于一个水库)和链接(类似于一根根链接水库和用户的管道)
  2. //这样的话管道就会有等多根(也就是链接会有多条如a用户和服务的链接和b用户和服务的链接)
  3. const webscoket = require('ws')
  4. const url = require('url')
  5. let webScoketServer = new webscoket.Server({port: '8000'}) //创建服务
  6. //ws 是管道
  7. let pool = new Map() //可能有多个用户链接 所以有多个管道 所以需要存储我们有那些管道链接
  8. let idList = ['1','2']
  9. //监听webScoketServer的长连接
  10. webScoketServer.on('connection',(ws,req)=> {
  11. let id = url.parse(req.url,true).query.id; //获取用户id
  12. let token = req.headers['sec-websocket-protocol'] //获取用户token
  13. console.log(id);
  14. console.log(token);
  15. if(idList.indexOf(id) === -1) { //判断用户是否存在
  16. ws.send(JSON.stringify({
  17. type:'error',
  18. msg: 'id不正确'
  19. }))
  20. ws.close()
  21. }
  22. pool.set('connection'+id,ws) //存储相应的链接
  23. //针对链接进行监听
  24. ws.on('message',(msg)=> {
  25. console.log(msg.toString())
  26. ws.send(JSON.stringify(
  27. {
  28. type: 'msg',
  29. msg:'收到' + msg.toString()
  30. }
  31. ))
  32. })
  33. //关闭
  34. ws.on('close',()=> {
  35. })
  36. //错误
  37. ws.on('error',()=> {
  38. })
  39. //发送消息
  40. ws.send(JSON.stringify({a:123444}))
  41. })

上面的代码我们用node.js创建了一个websocket服务

websocket客户端以vue中使用为例

创建相关文件目录

1007c109513040fcbc06a344f9eadda6.png

App.vue文件

  1. <template>
  2. <div>webSocket</div>
  3. <div>
  4. 用户1
  5. <input v-model="inputValue" />
  6. <button @click="sendMsg">发送</button>
  7. <button>关闭</button>
  8. </div>
  9. </template>
  10. <style scoped></style>

效果

72d0fbdcdfb04b6da58e4dda283dde82.png

发送按钮绑定自定义事件sendMsg()

  1. <script setup>
  2. import { ref } from 'vue'
  3. let inputValue = ref('')
  4. function sendMsg() {
  5. client.send(inputValue.value)
  6. }
  7. </script>

连接创建好的webSocket服务

  1. client = new WebSocket('ws://localhost:8000?id=1', ['afdsfsdfdsffsdf'])

通过webSocket提供的事件触发相关功能

close(关闭)

error (错误)

message (接收消息)

open (连接)

  1. //也可以用addEventLister监听
  2. client.onopen = () => {
  3. clearTimeout(reconnentTimer)
  4. headerBeat() //连接上后就开启心跳检测
  5. console.log('连接上了')
  6. }
  7. client.onmessage = (msg) => {
  8. //后端有消息
  9. console.log(JSON.parse(msg.data))
  10. }
  11. client.onclose = () => {
  12. reconnect()
  13. console.log('close')
  14. }
  15. client.onerror = () => {
  16. tryTime += 1
  17. reconnect()
  18. console.log('error')
  19. }

这里我将连接和监听相关事件封装成了一个方法

  1. const initWebSocket = () => {
  2. client = new WebSocket('ws://localhost:8000?id=1', ['afdsfsdfdsffsdf'])
  3. //也可以用addEventLister监听
  4. client.onopen = () => {
  5. clearTimeout(reconnentTimer)
  6. headerBeat() //连接上后就开启心跳检测
  7. console.log('连接上了')
  8. }
  9. client.onmessage = (msg) => {
  10. //后端有消息
  11. console.log(JSON.parse(msg.data))
  12. }
  13. client.onclose = () => {
  14. reconnect()
  15. console.log('close')
  16. }
  17. client.onerror = () => {
  18. tryTime += 1
  19. reconnect()
  20. console.log('error')
  21. }
  22. }

基本功能实现后为了保证websocket连接的一个持续效果和避免websocket服务因为网络或其他原因给我们断开连接所以我们还要实现定时重连和心跳检测的功能

定时重连实现

  1. //websocket重连方法
  2. /*
  3. 重连不可能永远都进行重新连接那样的话触发的就太频繁了 所以需要一个定时器
  4. */
  5. const reconnect = () => {
  6. //清除定时器
  7. clearTimeout(reconnentTimer)
  8. //用一个定时器避免频繁重连
  9. if(tryTime > maxTime) { //重连次数超过3次就不再重连
  10. alert('重连次数超过3次,请联系管理员!')
  11. clearTimeout(reconnentTimer)
  12. clearInterval(headerBeatTimer)
  13. return
  14. }
  15. reconnentTimer = setTimeout(() => {
  16. initWebSocket()
  17. }, 2000)
  18. }

心跳检测实现

  1. //webSockte 心跳检测
  2. const headerBeat = () => {
  3. clearInterval(headerBeatTimer)
  4. headerBeatTimer = setInterval(()=> {
  5. client.send(JSON.stringify({
  6. type: 'headerBeat',
  7. msg: 'test'
  8. }))
  9. },3000)
  10. }

App.vue完整代码

  1. <script setup>
  2. import { ref } from 'vue'
  3. let inputValue = ref('')
  4. let maxTime = 3 //重连最大的连接次数
  5. let tryTime = 0 //重连后出错的次数
  6. let reconnentTimer //重连定时器
  7. let client
  8. let headerBeatTimer //心跳定时器
  9. //建立和webSocket服务的链接
  10. //webSocket不可能让所有人随便连接,所以我们需要携带token或者id
  11. //心跳检测 定期向websocket服务发送消息维持心跳是为了避免websocket给我们断开连接
  12. //定时重连 如果连接中断或者出错我们需要重新连接保证websocket连接的一个持续效果
  13. /*
  14. 1.直接带在url的query
  15. 2.带在请求头上
  16. 3.cookie
  17. */
  18. const initWebSocket = () => {
  19. client = new WebSocket('ws://localhost:8000?id=1', ['afdsfsdfdsffsdf'])
  20. //也可以用addEventLister监听
  21. client.onopen = () => {
  22. clearTimeout(reconnentTimer)
  23. headerBeat() //连接上后就开启心跳检测
  24. console.log('连接上了')
  25. }
  26. client.onmessage = (msg) => {
  27. //后端有消息
  28. console.log(JSON.parse(msg.data))
  29. }
  30. client.onclose = () => {
  31. reconnect()
  32. console.log('close')
  33. }
  34. client.onerror = () => {
  35. tryTime += 1
  36. reconnect()
  37. console.log('error')
  38. }
  39. }
  40. //websocket重连方法
  41. /*
  42. 重连不可能永远都进行重新连接那样的话触发的就太频繁了 所以需要一个定时器
  43. */
  44. const reconnect = () => {
  45. //清除定时器
  46. clearTimeout(reconnentTimer)
  47. //用一个定时器避免频繁重连
  48. if(tryTime > maxTime) { //重连次数超过3次就不再重连
  49. alert('重连次数超过3次,请联系管理员!')
  50. clearTimeout(reconnentTimer)
  51. clearInterval(headerBeatTimer)
  52. return
  53. }
  54. reconnentTimer = setTimeout(() => {
  55. initWebSocket()
  56. }, 2000)
  57. }
  58. //webSockte 心跳检测
  59. const headerBeat = () => {
  60. clearInterval(headerBeatTimer)
  61. headerBeatTimer = setInterval(()=> {
  62. client.send(JSON.stringify({
  63. type: 'headerBeat',
  64. msg: 'test'
  65. }))
  66. },3000)
  67. }
  68. function sendMsg() {
  69. client.send(inputValue.value)
  70. }
  71. initWebSocket()
  72. </script>
  73. <template>
  74. <div>webSocket</div>
  75. <div>
  76. 用户1
  77. <input v-model="inputValue" />
  78. <button @click="sendMsg">发送</button>
  79. <button>关闭</button>
  80. </div>
  81. </template>
  82. <style scoped></style>

实现效果

cf13e5fe01de4bfa8a108e88da0fa55d.png a1e0cfb61e0c4d76a690f369fd0a389d.png

代码地址

司徒飞/vue-websockethttps://gitee.com/situ_fei/vue-websocket.git
司徒飞/vue-websocket-serverhttps://gitee.com/situ_fei/vue-websocket-server.git


本文转载自: https://blog.csdn.net/m0_53956340/article/details/140124221
版权归原作者 必然秃头 所有, 如有侵权,请联系我们删除。

“前端WebSocket”的评论:

还没有评论