用vue3表现websocket的状态

打印 上一主题 下一主题

主题 969|帖子 969|积分 2917

在前次vue3项目上增加一个标签,表现当前的连接状态,两个按钮:重新连接 和 断开连接
修改App.vue

  1. <template>
  2.   <header>
  3.     <title>ws状态测试</title>
  4.   </header>
  5.   <main>
  6.     <WsStatus />
  7.   </main>
  8. </template>
  9. <script setup lang="ts">
  10. import WsStatus from './components/WsStatus.vue'
  11. </script>
  12. <style scoped>
  13. header {
  14.   line-height: 1.5;
  15. }
  16. .logo {
  17.   display: block;
  18.   margin: 0 auto 2rem;
  19. }
  20. @media (min-width: 1024px) {
  21.   header {
  22.     display: flex;
  23.     place-items: center;
  24.     padding-right: calc(var(--section-gap) / 2);
  25.   }
  26.   .logo {
  27.     margin: 0 2rem 0 0;
  28.   }
  29.   header .wrapper {
  30.     display: flex;
  31.     place-items: flex-start;
  32.     flex-wrap: wrap;
  33.   }
  34. }
  35. </style>
复制代码
WsStatus.vue

创建一个组件WsStatus.vue
  1. <template>
  2.     <div class="WsStatus">
  3.         <h1>WebSocket 测试</h1>
  4.         <div class="status">
  5.             连接状态: <span :class="statusClass">{{ connectionStatus }}</span>
  6.         </div>
  7.         <button @click="reconnect" :disabled="isConnecting">
  8.             {{ isConnecting ? '连接中...' : '重新连接' }}
  9.         </button>
  10.         <button @click="closeConnect" :disabled="connectStatus">断开连接</button>
  11.         <canvas></canvas>
  12.     </div>
  13. </template>
  14. <script setup lang="ts" name="WsStatus">
  15. import { ref, onMounted, onUnmounted } from 'vue'
  16. const ws = ref()
  17. const imageUrl = ref()
  18. const connectionStatus = ref('未连接')
  19. const isConnecting = ref(false)
  20. const connectStatus = ref(false)
  21. const statusClass = ref('disconnected')
  22. function get_appropriate_ws_url(extra_url: string) {
  23.     var pcol;
  24.     // 获得页面上的url
  25.     var u = document.URL;
  26.     /*
  27.      * We open the websocket encrypted if this page came on an
  28.      * https:// url itself, otherwise unencrypted
  29.      */
  30.     // 去掉http://或者https://
  31.     if (u.substring(0, 5) === "https") {
  32.         pcol = "wss://";
  33.         u = u.substr(8);
  34.     } else {
  35.         pcol = "ws://";
  36.         if (u.substring(0, 4) === "http")
  37.             u = u.substr(7);
  38.     }
  39.     /* + "/xxx" bit is for IE10 workaround */
  40.     //回来的url就城了ws://地址或者wss://地址
  41.     return pcol + u.split('/')[0] + "/" + extra_url;
  42. }
  43. // WebSocket配置(修改为你的服务器地址)
  44. const wsUrl = get_appropriate_ws_url("")
  45. const connectWebSocket = () => {
  46.     if (isConnecting.value) return
  47.     isConnecting.value = true
  48.     connectionStatus.value = '连接中...'
  49.     statusClass.value = 'connecting'
  50.     ws.value = new WebSocket(wsUrl)
  51.     ws.value.onopen = () => {
  52.         connectionStatus.value = '已连接'
  53.         statusClass.value = 'connected'
  54.         isConnecting.value = false
  55.         connectStatus.value = false
  56.     }
  57.     ws.value.onmessage = (event: any) => {
  58.         console.log('收到数据')
  59.     }
  60.     ws.value.onerror = (error: any) => {
  61.         console.error('WebSocket错误:', error)
  62.         connectionStatus.value = '连接错误'
  63.         statusClass.value = 'error'
  64.         isConnecting.value = false
  65.     }
  66.     ws.value.onclose = () => {
  67.         connectionStatus.value = '连接已关闭'
  68.         statusClass.value = 'disconnected'
  69.         isConnecting.value = false
  70.         connectStatus.value = true
  71.     }
  72. }
  73. // 组件挂载时自动连接
  74. onMounted(() => {
  75.     connectWebSocket()
  76. })
  77. // 组件卸载时关闭连接
  78. onUnmounted(() => {
  79.     if (ws.value) {
  80.         ws.value.close()
  81.     }
  82. })
  83. function reconnect() {
  84.     if (ws.value) {
  85.         ws.value.close()
  86.     }
  87.     connectWebSocket()
  88. }
  89. function closeConnect() {
  90.     if (ws.value) {
  91.         ws.value.close()
  92.     }
  93. }
  94. </script>
  95. <style scoped>
  96. .websocket-page {
  97.     padding: 20px;
  98.     max-width: 800px;
  99.     margin: 0 auto;
  100. }
  101. .status {
  102.     margin: 20px 0;
  103.     font-size: 18px;
  104. }
  105. .status span {
  106.     font-weight: bold;
  107. }
  108. .connected {
  109.     color: #4CAF50;
  110. }
  111. .connecting {
  112.     color: #FFC107;
  113. }
  114. .disconnected {
  115.     color: #F44336;
  116. }
  117. .error {
  118.     color: #F44336;
  119. }
  120. button {
  121.     padding: 10px 20px;
  122.     background-color: #2196F3;
  123.     color: white;
  124.     border: none;
  125.     border-radius: 4px;
  126.     cursor: pointer;
  127. }
  128. button:disabled {
  129.     background-color: #BBDEFB;
  130.     cursor: not-allowed;
  131. }
  132. .messages {
  133.     margin-top: 30px;
  134.     border-top: 1px solid #eee;
  135.     padding-top: 20px;
  136.     background-size: 100% 100%;
  137. }
  138. ul {
  139.     list-style-type: none;
  140.     padding: 0;
  141.     max-height: 300px;
  142.     overflow-y: auto;
  143.     border: 1px solid #ddd;
  144.     padding: 10px;
  145.     border-radius: 4px;
  146. }
  147. li {
  148.     padding: 5px 0;
  149.     border-bottom: 1px solid #eee;
  150. }
  151. .live-image {
  152.     position: fixed;
  153.     top: 50%;
  154.     left: 50%;
  155.     width: 100vw;
  156.     /* 根据需要设置宽度 */
  157.     height: 100vw;
  158.     object-fit: cover;
  159.     transform: translate(-50%, -50%);
  160. }
  161. #camImage,
  162. #canvas {
  163.     position: fixed;
  164.     left: 0;
  165.     top: 0;
  166.     width: 100%;
  167.     /* height: 100%; */
  168.     z-index: -1;
  169. }
  170. /* 竖屏 */
  171. @media screen and (orientation: portrait) {}
  172. /* 横屏 */
  173. @media screen and (orientation: landscape) {}
  174. </style>
复制代码
编译打包上传部署

  1. $ npm run build
  2. $ scp -r ./dist/* root@192.168.9.163:/oem/usr/www
复制代码
测试

在rv1106摄像头打开运行ws服务器
  1. # /oem/usr/bin/ws_cam
复制代码
欣赏器访问 http://192.168.9.163:7681/
看到相应页面,按按键会有相应的变换。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

泉缘泉

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表