This article mainly introduces the use of socket.io to implement a simple chat room case, which has certain reference value. Interested friends can refer to it.
The example in this article shares the socket.io implementation with everyone. The specific code of the simple chat room is for your reference. The specific content is as follows
1. Client [index.html] code:
<body> <h3 id="socket简例">socket简例</h3> <hr> <p id = 'app'> <p> <p> <ul> <li v-for = 'item in msgs'> {{item.name}}说:{{item.content}} </li> </ul> </p> <p> <p><input type="text" v-model = 'msg'><button @click = 'm_send()'>发送</button></p> </p> </p> </p> <script type="text/javascript" src = 'https://cdn.bootcss.com/vue/2.5.9/vue.min.js'></script> <script type="text/javascript" src = 'https://cdn.bootcss.com/socket.io/1.7.3/socket.io.min.js'></script> <script type="text/javascript"> var _vm = new Vue({ data : { name : '用户', msg : '', msgs : [], }, methods : { m_send : function() { // 向客户端发送消息 socket_client.emit('say_client', { name : this.name, content : this.msg }) ; this.msg = '' ; } } }).$mount('#app') ; // socket服务器 var socket_client = io.connect('http://127.0.0.1:3000') ; /** * 监听服务端发来的消息 * * 1、“say_server”是客户端发出信息时的key值 * 2、“res”是客户端传来的value值 */ socket_client.on('say_server' ,function(res){ console.log('服务端发来的消息为:', res) ; _vm.msgs.push(res); }); </script> </body>
2. Server [app.js] code:
const http = require('http') ; const server = http.createServer() ; // web服务器 const express = require('express') ; const app = express(); app.use(express.static(__dirname + '/public')); app.listen(8888, function () { console.log('web服务器成功启动了,IP:127.0.0.1,端口号:8888') ; }); // socket服务器 const socketio = require('socket.io') ; const socket_server = socketio(server) ; // 建立和客户端的socket连接 socket_server.on('connection', function(client) { // console.log(client) ; // 查看连接进来的客户端对象内容 // console.log(Object.keys(client)) ; // 查看连接进来的客户端对象的关键key值 /** * 监听客户端发来的消息 * * 1、“say_client”是客户端发出信息时的key值 * 2、“res”是客户端传来的value值 */ client.on('say_client', function(res) { console.log('客户端发来的消息为:', res) ; // 向客户端发送消息 socket_server.emit('say_server', res) ; }) ; }) ; server.listen(3000, function() { console.log('socket服务器成功启动了,IP:127.0.0.1,端口号:3000') ; }) ;
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
How should webpack handle styles?
How to generate word images in js
What are the reference methods for libraries in jQuery
The above is the detailed content of How to implement a chat room using socket.io. For more information, please follow other related articles on the PHP Chinese website!

如何使用MySQL和Java实现一个简单的聊天室功能引言:在当今社交媒体的盛行下,人们越来越依赖于在线聊天来交流和分享信息。如何使用MySQL和Java实现一个简单的聊天室功能是一个非常有趣和实用的项目。本文将介绍如何使用MySQL和Java来实现这一功能,并提供具体的代码示例。一、搭建数据库首先,我们需要在MySQL中创建一个数据库来存储聊天室的相关信息。

如何使用Go语言开发Websocket聊天室Websocket是一种实时通信协议,通过建立一次连接,可以在服务器和客户端之间进行双向通信。在开发聊天室时,Websocket是一个非常好的选择,因为它可以实现实时消息交流,并且能够提供高效的性能。本文将介绍如何使用Go语言开发一个简单的Websocket聊天室,并提供一些具体的代码示例。一、准备工作1.安装Go

基于JavaScript构建实时聊天室随着互联网的快速发展,人们越来越注重即时通讯和实时互动体验。而实时聊天室作为一种常见的即时通讯工具,对于个人和企业来说都非常重要。本文将介绍如何使用JavaScript构建一个简单的实时聊天室,并提供相应的代码示例。我们首先需要一个前端页面作为聊天室的UI界面。以下是一个简单的HTML结构示例:<!DOCTYPE

ThinkPHP6聊天室开发指南:实现实时通讯功能引言:随着互联网的快速发展,实时通讯的需求也越来越大。聊天室作为一种常见的实时通讯方式,受到了广泛的关注和使用。本文将通过使用ThinkPHP6框架,为大家提供一种简单、快速实现实时通讯功能的方法。一、环境配置:在开始之前,我们需要配置好开发环境。确保你已经安装了PHP和ThinkPHP6框架。同时,本文将使

nginx代理了两台socket.io服务器。socket.io的工作模式是polling升级到websocket现象通过nginx请求服务时,出现了大量的400错误,有时候能升级到websocket,有时候会一直报错。但是直接通过ip+端口访问时,100%能成功。分析sidsid是我们这个问题的关键。在初始创建连接时(polling模式就是在模拟一个长连接),客户端会发起这样的请求:https://***/?eio=3&transport=polling&t=154082071

利用PHP和Websocket开发聊天室功能引言:随着互联网的迅猛发展,聊天室已经成为人们日常交流和社交的重要手段之一。利用PHP和Websocket技术开发一个聊天室功能可以实现实时的双向通信,为用户提供更流畅便捷的聊天体验。本文将介绍如何使用PHP和Websocket来实现一个简单的聊天室,并提供具体的代码示例。一、准备工作:在开始开发之前,我们需要确保

在互联网时代,聊天室成为了人们交流、社交的一个重要场所。而WebSocket技术的出现,则使得实时通信变得更为流畅、稳定。今天,我们介绍如何利用Swoole框架快速搭建一个基于WebSocket的聊天室。Swoole是一款高性能的PHP协程网络通信框架,采用C语言编写,集异步IO、协程、网络通信等功能于一身,使得PHP代码能够像Node.js

在Web开发领域中,实时聊天功能已经越来越普及。它可以帮助用户轻松地进行实时互动,增进交流和了解。为了实现实时聊天,我们需要使用WebSocket协议,并且需要一种可以处理WebSocket请求的编程语言。在本文中,我们将介绍如何使用PHP和WebSocket集成实现实时聊天室的开发。WebSocket是一种全双工的通信协议,可以在浏览器和服务器之间进行实时


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
