使用node+vue實現簡單的WebSocket聊天功能


websocket的即時通信非常的強大,這里我用node啟動了一個服務進行websocket鏈接,然后再vue的view里面進行了鏈接,進行通信,廢話不多說,直接上代碼吧,

首先,我需要用到node的nodejs-websocket模塊

使用yarn進行安裝

1
yarn add nodejs-websocket --save

當然,你也可以用npm進行安裝

1
npm i nodejs-websocket --save

安裝完畢之后,我們開始寫服務端的代碼,首先,我用node在本地起了一個node服務器用來開啟websocket服務

sock.js:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
let ws = require( "nodejs-websocket" );
console.log( "開始建立鏈接" );
ws.createServer(function (conn) {
   conn.on( "text" , function (str) {
     console.log( "收到的信息為" , str);
       conn.send(`${str}(機器人`)
   });
   conn.on( "close" , function (code, reason) {
     console.log( "關閉連接" )
   });
   conn.on( "error" , function (code, reason) {
     console.log( "異常關閉" )
   })
}).listen( 8001 );
console.log( "鏈接建立完畢" );

服務端主要是用nodejs-websocket用來開啟服務,以及返回前端需要的值,這里我只是做了一個簡單的處理,在接受值得后面加了一個‘機器人’的string,

然后,我們需要開啟這個node服務,

命令后面的路徑一定要找對,我是把sock.js放在了根目錄的socket文件夾下面

執行

1
yarn socket

  

最后,看我們的客戶端,客戶端我是想有一個輸入框,然后有個聊天框:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<template>
   <div  class = "test3" >
     <div  class = "msg"  ref= "box" >
       <div v- for = "item in list"  : class = "[item.type,'msg-item']" >
         <p>
           {{item.content}}
         </p>
       </div>
     </div>
     <div  class = "input-group" >
       <input type= "text"  v-model= "contentText" >
       <button  @click = "sendText" >發送</button>
     </div>
   </div>
</template>
 
<script>
   export  default  {
     name:  "index3" ,
     data() {
       return  {
         list: [], //聊天記錄的數組
         contentText:  "" , //input輸入的值
       }
     },
     methods: {
       //發送聊天信息
        sendText() {
         let that =  this ;
         this .list = [... this .list, {type:  "mine" , content:  this .contentText}]; //通過type字段進行區分是自己(mine)發的還是系統(robot)返回的
         this .backText(function () {
           that.contentText =  "" ; //加回調在得到返回數據的時候清除輸入框的內容
         });
       },
       backText(callback) {
         let that =  this ;
         if  (window.WebSocket) {
           let ws =  new  WebSocket( "ws://192.168.11.169:8001" );
           ws.onopen = function (e) {
             console.log( "鏈接服務器成功" );
             console.log( "that.contentText is" , that.contentText);
             ws.send(that.contentText);
             callback();
           };
           ws.onclose = function (e) {
             console.log( "服務器關閉" )
           };
           ws.onerror = function () {
             console.log( "服務器出錯" )
           };
           ws.onmessage = function (e) {
             that.list = [...that.list, {type:  "robot" , content: e.data}]
           }
         }
       }
     },
     watch: {
       //監聽list,當有修改的時候進行div的屏幕滾動,確保能看到最新的聊天
       list: function () {
         let that =  this ;
         setTimeout(() => {
           that.$refs.box.scrollTop = that.$refs.box.scrollHeight;
         },  0 );
         //加setTimeout的原因:由於vue采用虛擬dom,我每次生成新的消息時獲取到的div的scrollHeight的值是生成新消息之前的值,所以造成每次都是最新的那條消息被隱藏掉了
       }
     },
     mounted() {
     }
   };
 
 
</script>
 
<style scoped lang= "scss" >
   .test3 {
     text-align: center;
   }
 
   .msg {
     width: 100px;
     height: 100px;
     overflow: auto;
     padding-top: 5px;
     border: 1px solid red;
     display: inline-block;
     margin-bottom: 6px;
 
     .msg-item {
       position: relative;
       overflow: hidden;
       p {
         display: inline-block;
         border-radius: 40px;
         background: #3C3D5A;
         color: white;
         float : left;
         padding: 2px 12px;
         margin:  0  0  2px  0 ;
         max-width:  70 %;
         text-align: left;
         box-sizing: border-box;
       }
 
       &.mine {
         p {
           float : right;
           background: aquamarine;
           color: white;
         }
       }
     }
   }
 
</style>

  看一下最終效果:

 

 

 

 

 

 

.


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM