码迷,mamicode.com
首页 > 其他好文 > 详细

node-express给客户端发送消息

时间:2019-05-17 16:49:55      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:script   ons   log   expr   data   soc   ESS   tms   news   

服务端:

const app = require(‘express‘)();
var server = require(‘http‘).Server(app)
var io = require(‘socket.io‘)(server);
server.listen(8080);
// io.on(‘connection‘,function(socket){
// socket.emit(‘news‘,{hello:‘hello‘})
// })

var chat = io.of(‘/lisdfn‘).on(‘connection‘,function(socket){
chat.emit(‘chat‘,‘chatmsg‘);
})


var news =io.of(‘/news‘).on(‘connection‘,function(socket){
news.emit(‘news‘,‘newsmgs‘)
})

客户端:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script src="https://cdn.bootcss.com/socket.io/2.2.0/socket.io.js"></script>
</head>
<body>
<script>
var news = io.connect(‘http://localhost:8080/news‘);
var chat = io.connect(‘http://localhost:8080/lisdfn‘);
news.on(‘news‘,function(data){
console.log(data)
})
chat.on(‘chat‘,function(data){
console.log(5,data)
})
</script>
</body>
</html>

 

node-express给客户端发送消息

标签:script   ons   log   expr   data   soc   ESS   tms   news   

原文地址:https://www.cnblogs.com/qiyc/p/10882020.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!