1、爲何須要websocket?前端
前端和後端的交互模式最多見的就是前端發數據請求,從後端拿到數據後展現到頁面中。若是前端不作操做,後端不能主動向前端推送數據,這也是http協議的缺陷。vue
所以,一種新的通訊協議應運而生---websocket,他最大的特色就是服務端能夠主動向客戶端推送消息,客戶端也能夠主動向服務端發送消息,實現了真正的平等。web
websocket其餘特色以下:後端
(1)創建在 TCP 協議之上,服務器端的實現比較容易。瀏覽器
(2)與 HTTP 協議有着良好的兼容性。默認端口也是80和443,而且握手階段採用 HTTP 協議,所以握手時不容易屏蔽,能經過各類 HTTP 代理服務器。服務器
(3)數據格式比較輕量,性能開銷小,通訊高效。websocket
(4)能夠發送文本,也能夠發送二進制數據。socket
(5)沒有同源限制,客戶端能夠與任意服務器通訊。post
(6)協議標識符是ws
(若是加密,則爲wss
),服務器網址就是 URL。性能
2、vue項目如何引用websocket?
vue使用websocket須要注意如下幾點:
(1)首先須要判斷瀏覽器是否支持websocket,關於如何解決兼容性問題能夠參考 這裏這裏
(2)在組件加載的時候鏈接websocket,在組件銷燬的時候斷開websocket
(3)後端接口須要引入socket模塊,不然不能實現鏈接
不廢話了,直接附上完整代碼:
<template> <div> <button @click="send">發消息</button> </div> </template> <script> export default { data () { return { path:"ws://192.168.0.200:8005/qrCodePage/ID=1/refreshTime=5", socket:"" } }, mounted () { // 初始化 this.init() }, methods: { init: function () { if(typeof(WebSocket) === "undefined"){ alert("您的瀏覽器不支持socket") }else{ // 實例化socket this.socket = new WebSocket(this.path) // 監聽socket鏈接 this.socket.onopen = this.open // 監聽socket錯誤信息 this.socket.onerror = this.error // 監聽socket消息 this.socket.onmessage = this.getMessage } }, open: function () { console.log("socket鏈接成功") }, error: function () { console.log("鏈接錯誤") }, getMessage: function (msg) { console.log(msg.data) }, send: function () { this.socket.send(params) }, close: function () { console.log("socket已經關閉") } }, destroyed () { // 銷燬監聽 this.socket.onclose = this.close } } </script> <style> </style>