本文主要介紹了node.js 用socket實(shí)作聊天的範(fàn)例程式碼,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟著小編過(guò)來(lái)看看吧,希望能幫助大家。
伺服器建立
app.js
#
const http = require("http");
const express = require("./express");
//創(chuàng)建一個(gè)服務(wù)
const server = http.createServer(express);
//監(jiān)聽服務(wù)端口
server.listen(8001,()=>{
console.log("服務(wù)端已經(jīng)啟動(dòng),請(qǐng)?jiān)L問 http://localhost:8001");
});
express.js
const url=require("url");
const fs=require("fs");
function express(req,res){
var urlObj=url.parse(req.url);
//console.log(urlObj);
var filePath="./www"+urlObj.pathname;
var content="not found";
if(fs.existsSync(filePath)){
content=fs.readFileSync(filePath);
}
res.end(content.toString());
}
module.exports=express;
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Socket.IO chat</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font: 13px Helvetica, Arial; }
form { background: #000; padding: 3px; position: fixed; bottom: 0; width: 100%; }
form input { border: 0; padding: 10px; width: 90%; margin-right: .5%; }
form button { width: 9%; background: rgb(130, 224, 255); border: none; padding: 10px; }
#messages { list-style-type: none; margin: 0; padding: 0; }
#messages li { padding: 5px 10px; }
#messages li:nth-child(odd) { background: #eee; }
</style>
</head>
<body>
<ul id="messages"></ul>
<form action="">
<input id="m" autocomplete="off" /><button>Send</button>
</form>
<script src="js/lib/jquery-1.11.1.js"></script>
<script src="js/lib/socket.io.js"></script>
<script src="js/index.js"></script>
</body>
</html>
用戶端服務(wù)建立與服務(wù)端通訊
我們要建立服務(wù)端socket請(qǐng)求連線
io.on('connection', function(socket){
console.log('a user connected');
//斷開連接
socket.on('disconnect', function(){
console.log('user disconnected');
});
});
#index.js
//客戶端建立連接
var socket = io();
客戶端向服務(wù)端發(fā)送請(qǐng)求
index.js
$('form').submit(function(){
//觸發(fā)事件
socket.emit('chat message', $('#m').val());
$('#m').val('');
return false;
});
app.js
//接收客戶端的信息
socket.on('chat message', function(msg){
console.log('message: ' + msg);
});
將服務(wù)端的資料廣播到客戶端去
socket.on('chat message', function(msg){
console.log('message: ' + msg);
socket.broadcast.emit("clientE",msg);
});
客戶端接收服務(wù)端廣播出來(lái)的資料
socket.on('clientE', function(msg){
$('#messages').append($('<li>').text(msg));
});
相關(guān)推薦:
nodejs基於WS模組實(shí)作WebSocket聊天功能
jquery仿微信聊天介面實(shí)例分享
實(shí)例詳解vue元件父子間通訊之聊天室
以上是node.js 用socket實(shí)作聊天實(shí)例分享的詳細(xì)內(nèi)容。更多資訊請(qǐng)關(guān)注PHP中文網(wǎng)其他相關(guān)文章!