websocket+node.js實現即時聊天系統問題諮詢,websocketnode.js
1.最近新學習websocket。做了一個即時聊天。用Node.js搭建的服務:serevr.js. 兩個相互連信頁面:client.html 和server.html
但是就是有很多問題,想讓知道的人幫我看看哈:
我先把代碼貼出來:
server.js:
var ws=require("nodejs-websocket"); console.log("開始建立串連..."); var str1=null,str2=null, clientReady=false,serverReady=false; var server=ws.createServer(function(conn){ conn.on('text',function(str){ console.log(str); /** * 使用者小雨第一次串連 */ if(str==="小雨"){ str1=conn; clientReady=true; str1.sendText("歡迎"+str); } /** * 使用者小喬第一次串連 */ if(str==="小喬"){ str2=conn; serverReady=true; str2.sendText("歡迎"+str); } /** * 當有第二個使用者串連時。 */ if(clientReady&&serverReady){ str2.sendText(str); str1.sendText(str); } }) conn.on("close",function(code,reason){ console.log("關閉串連"); }) conn.on("error",function(code,reason){ console.log("異常關閉") }); }).listen(8082); console.log("websocket串連完畢")client.html:<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> .kuang{ width: 600px; min-height: 50px; max-height:296px; border:1px solid; float: left; display: block; position:relative; overflow-y: scroll; } .value{ width: 200px; } .input{ display:block; position: absolute; left:0; margin-top: 300px; } </style></head><body> <label>串連使用者:</label> <input type="text" id="name" value="小雨" readonly/> <button id="conn">串連</button> <button id="close">斷開</button><br/><br/> <div class="kuang" id="mess"></div> <div class="input"> <input type="text" class="value" id="value1" /> <button id="send">發送</button> </div> <script> var name=document.getElementById("name").value; var mess=document.getElementById("mess"); var value1=document.getElementById("value1"); var conn= document.getElementById("conn"); var close=document.getElementById("close"); close.disabled=true; if(window.WebSocket){ conn.onclick=function(){ var ws=new WebSocket('ws://127.0.0.1:8082'); conn.disabled=true; close.disabled=false; ws.onopen=function(e){ console.log("串連伺服器成功"); ws.send(name); } ws.onmessage=function(e){ var time=new Date(); mess.innerHTML+=time.toUTCString()+":"+e.data+"<br>"; document.getElementById("send").onclick=function(e){ ws.send(name+"說:"+value1.value); value1.value=" "; } document.onkeydown = function(e) { e = e || window.event; if(e.keyCode == 13) { document.getElementById("send").onclick(); return false; } } } /** * 用戶端主動中斷連線 * * **/ close.onclick=function(){ ws.onclose(); conn.disabled=false; close.disabled=true; } ws.onclose = function(e){ console.log("伺服器關閉"); } ws.onerror = function(){ console.log("串連出錯"); } } } </script></body></html>
server.html 頁面和client.html的代碼一樣,就是使用者名稱字換成小喬啦。
接下來就是問題啦:
1.運行介面:
client.html 串連以後:
本來伺服器只需要回傳一個歡迎小雨的,然後下面還輸出了一個。
server.html 小喬串連以後也出來了一個小喬,按理是歡迎小喬。然後告訴小喬小雨線上了。
2.兩個頁面代碼一樣,但是就是不能只變成一個頁面,硬要兩個才能聊天。
3.server.js那邊邏輯有點問題,一直理不清楚。
以上所述是小編給大家介紹的websocket+node.js實現即時聊天系統問題諮詢,希望對大家有所協助,如果大家有任何疑問請給我留言,小編會及時回複大家的。在此也非常感謝大家對幫客之家網站的支援!