1. //服务端代码
  2. io = require('socket.io').listen(app),
  3. fs = require('fs'),
  4. cookie=require('cookie');
  5. request=require('request');
  6. global.userlist={};
  7.  
  8. app.listen(8080);
  9. //io.set('log level', 1);//将socket.io中的debug信息关闭
  10.  
  11. function handler (req, res) {
  12. res.writeHead(200, {
  13. 'Content-Type': 'text/plain'
  14. });
  15. res.end('Hello World\n');
  16. }
  17. var content;
  18. var socketUser = {};
  19. var settings={};
  20. settings.host='http://localhost/test/node/myapp/';
  21. io.sockets.on('connection', function (socket) {
  22. if(socket.handshake.headers.cookie){
  23. var curcookie=cookie.parse(socket.handshake.headers.cookie);
  24. var id=curcookie['PHPSESSID'];
  25. request(settings.host+'getinfo.php?type=getinfo&sid='+id,function(err,res,body){
  26. if(!err&&res.statusCode==200){
  27. if(body){
  28. body=eval('('+body+')');
  29. var userid=body.ID;
  30. var username=body.UserName;
  31. var online=body.Online;
  32. //将新用户存进socket用户列表中
  33. userlist[id]=socket;
  34.  
  35. socketUser[id] = {
  36. 'userid':userid,
  37. 'username':username
  38. };
  39. //更改上线状态
  40. request(settings.host+'getinfo.php?type=online&sid='+id,function(err,res,body){})
  41.  
  42. //发送信息给新登录用户
  43. socket.emit('system',{
  44. 'alluser':socketUser
  45. });
  46.  
  47. //上线欢迎
  48. socket.emit('open',{
  49. 'msg':'welcome!'
  50. })
  51.  
  52. //下线推送通知 disconnect方法名不能修改
  53. socket.on('disconnect',function(){
  54. //更改用户不在线
  55. socketUser[id]=null;
  56. userlist[id]=null;
  57. request(settings.host+'getinfo.php?type=unline&sid='+id,function(err,res,body){})
  58. socket.broadcast.emit('broadcast',{
  59. 'msg':'noline',
  60. 'unlineid':userid,
  61. 'unlinename':username,
  62. 'type':1
  63. });
  64. })
  65.  
  66. //监听接收用户信息
  67. socket.on('sendnews', function (data) {
  68. if(data.touserid&&userlist[data.touserid]!=undefined){
  69. var user=userlist[data.touserid];
  70. data.fromusername=socketUser[data.fromuserid].username;
  71. //将用户信息发送给指定用户
  72. user.emit('receivenews',data);
  73. }else{
  74. socket.emit('receivenews',data);
  75. }
  76. });
  77.  
  78. //广播 推送已登录的用户
  79. socket.broadcast.emit('broadcast',{
  80. 'userid':userid,
  81. 'username':username,
  82. 'type':2
  83. });
  84. }else{
  85. console.log('falseness connect');
  86. }
  87. }
  88. })
  89. }else{
  90. console.log('cookie not exist');
  91. }
  92. });
  1. //客户端代码
  2.  
  3. <?php
  4. $data = $_GET;
  5. if (!isset($data['username']) || $data['username'] === '' || !isset($data['id']) || $data['id'] === '') {
  6. header("location:login.php");
  7. }
  8. session_id($data['id']);
  9. session_start();
  10. $userid = $data['id'];
  11. $name = $data['username'];
  12. $con = <a href="https://www.baidu.com/s?wd=mysql_connect&tn=44039180_cpr&fenlei=mv6quAkxTZn0IZRqIHckPjm4nH00T1YvPAndmhNWnWu9nvczmWb10ZwV5Hcvrjm3rH6sPfKWUMw85HfYnjn4nH6sgvPsT6KdThsqpZwYTjCEQLGCpyw9Uz4Bmy-bIi4WUvYETgN-TLwGUv3EnHT1n1D4P1R4PjnkPjcdnW6vPs" target="_blank" class="baidu-highlight">mysql_connect</a>("localhost", "root", "") or die("sds");
  13. <a href="https://www.baidu.com/s?wd=mysql_select_db&tn=44039180_cpr&fenlei=mv6quAkxTZn0IZRqIHckPjm4nH00T1YvPAndmhNWnWu9nvczmWb10ZwV5Hcvrjm3rH6sPfKWUMw85HfYnjn4nH6sgvPsT6KdThsqpZwYTjCEQLGCpyw9Uz4Bmy-bIi4WUvYETgN-TLwGUv3EnHT1n1D4P1R4PjnkPjcdnW6vPs" target="_blank" class="baidu-highlight">mysql_select_db</a>("test", $con);
  14. mysql_query("set names utf8");
  15. $sql = 'select * from io_user where username="' . $name . '" and ID=' . $userid;
  16. $result = mysql_query($sql);
  17. $res = mysql_fetch_assoc($result);
  18. if (!$res) {
  19. header("location:login.php");
  20. }
  21. ?>
  22. <html lang="en">
  23. <head>
  24. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  25. <title>Ssocket</title>
  26. <script type="text/javascript" src="public/javascripts/jquery.min.js"></script>
  27. <script type="text/javascript" src="http://localhost:8080/socket.io/socket.io.js"></script>
  28. </head>
  29.  
  30. <body>
  31. <p>我的id:<?php echo $userid ?></p>
  32. <p>我的名字:<?php echo $name; ?></p>
  33. <h4>在线用户列表</h4>
  34. <table border="1" id="userlists">
  35. <thead>
  36. <tr>
  37. <th width="80px">ID</th>
  38. <th width="80px">用户名</th>
  39. <th width="80px">选中</th>
  40. </tr>
  41. </thead>
  42. <tbody>
  43. </tbody>
  44. </table>
  45. <p style="margin-top:10px">
  46. 信息:
  47. <input type="text" style="width:338px" id="content">
  48. <button id="send">发送</button>
  49. </p>
  50. <div id="msg"></div>
  51. <div id="unline"></div>
  52. <script type="text/javascript">
  53. var userid='<?php echo $userid; ?>';
  54. var username='<?php echo $name; ?>';
  55. var socket = io.connect('http://localhost:8080');
  56.  
  57. //欢迎信息
  58. socket.on('open',function(res){
  59. console.log(res);
  60. })
  61.  
  62. //无连接
  63. socket.on('disconnect',function(res){
  64. console.log('not connect');
  65. })
  66.  
  67. //接收用户消息
  68. socket.on('receivenews',function(res){
  69. var html='<p>来自用户 ('+res.fromusername+') 的消息: '+res.content+'</p>';
  70. $('#msg').append(html)
  71. })
  72.  
  73. //接收系统消息
  74. socket.on('system',function(res){
  75. if(res.alluser){
  76. var html='';
  77. var time=0;
  78. $.each(res.alluser,function(k,v){
  79. if(v==null||v.userid==userid){
  80. return;
  81. }
  82. time++;
  83. html+='<tr userid="'+v.userid+'"><td>'+time+'<td>'+v.username+'</td>';
  84. html+='<td><input type="checkbox" class="checkbox" userid="'+v.userid+'"></td></tr>';
  85.  
  86. })
  87. $('#userlists tbody').html(html);
  88. }
  89. })
  90.  
  91. //获取推送信息
  92. socket.on('broadcast',function(res){
  93. if(res.type==1&&res.unlineid!=userid){
  94. $('#userlists tbody tr[userid="'+res.unlineid+'"]').remove();
  95. $('#unline').append('<p>用户'+res.unlinename+'离线</p>')
  96. return false;
  97. }
  98. if(res.type==2&&res.userid){
  99. if(res.userid==userid){
  100. return false;
  101. }
  102. if($('#userlists tbody tr[userid="'+res.userid+'"]').length>0){
  103. return false;
  104. }
  105. var html='';
  106. var length=$('#userlists tbody tr').length;
  107. html+='<tr userid="'+res.userid+'"><td>'+(length+1)+'<td>'+res.username+'</td>';
  108. html+='<td><input type="checkbox" class="checkbox" userid="'+res.userid+'"></td></tr>';
  109. $('#userlists tbody').append(html);
  110. $('#unline').append('<p>用户'+res.username+'上线</p>')
  111. return false;
  112. }
  113. })
  114.  
  115. $(function(){
  116. $('.checkbox').live('click',function(){
  117. if($(this).attr('checked')=='checked'){
  118. $('.checkbox').removeAttr('checked');
  119. $(this).attr('checked',true);
  120. }
  121.  
  122. })
  123.  
  124. //输入框回车事件
  125. $("#content").keyup(function(e){
  126. if(e.keyCode==13){
  127. $('#send').trigger('click');
  128. }
  129. return false;
  130. });
  131.  
  132. $('#send').click(function(){
  133. var content=$('#content').val();
  134. var data={};
  135. var touserid=$('.checkbox[checked]').attr('userid');
  136. if(touserid==undefined){
  137. alert('请选择用户');
  138. return false;
  139. }
  140. if(content!=''){
  141. $('#content').val('');
  142. data.fromuserid=userid;
  143. data.touserid=touserid;
  144. data.content=content;
  145. //发送信息
  146. socket.emit('sendnews',data);
  147. }
  148. })
  149. })
  150. </script>
  151. </body>
  152. </html>

代码网上转载而来,质量不论,仅做参考

node与socket.io搭配小例子-转载的更多相关文章

  1. 转载:node.js socket.io

    本文转自:http://www.xiaocai.name/post/cf1f9_7b6507  学习node.js socket.io 使用 用node.js(socket.io)实现数据实时推送 在 ...

  2. 使用Node.js+Socket.IO搭建WebSocket实时应用【转载】

    原文:http://www.jianshu.com/p/d9b1273a93fd Web领域的实时推送技术,也被称作Realtime技术.这种技术要达到的目的是让用户不需要刷新浏览器就可以获得实时更新 ...

  3. 基于node.js+socket.io+html5实现的斗地主游戏(1)概述

    一.游戏描述 说是斗地主游戏,其实是寝室自创的"捉双A",跟很多地方的捉红10.打红A差不多,大概规则是: 1.基础牌型和斗地主一样,但没有大小王,共52张牌,每人13张,这也是为 ...

  4. 使用Node.js+Socket.IO搭建WebSocket实时应用

    Web领域的实时推送技术,也被称作Realtime技术.这种技术要达到的目的是让用户不需要刷新浏览器就可以获得实时更新.它有着广泛的应用场景,比如在线聊天室.在线客服系统.评论系统.WebIM等. W ...

  5. (转)使用Node.js+Socket.IO搭建WebSocket实时应用

    Web领域的实时推送技术,也被称作Realtime技术.这种技术要达到的目的是让用户不需要刷新浏览器就可以获得实时更新.它有着广泛的应用场景,比如在线聊天室.在线客服系统.评论系统.WebIM等. W ...

  6. node及socket.io实现简易websocket双向通信

    技术栈: vue2.0 + node + websocket( socket.io ) 1. 安装依赖 初始化vue项目后输入下方指令安装依赖包 // 推荐cnpm安装 npm i vue-socke ...

  7. socket.io搭配pm2(cluster)集群解决方案

    socket.io与cluster 在线上系统中,需要使用node的多进程模型,我们可以自己实现简易的基于cluster模式的socket分发模型,也可以使用比较稳定的pm2这样进程管理工具.在常规的 ...

  8. AngularJS+Node.js+socket.io 开发在线聊天室

    所有文章搬运自我的个人主页:sheilasun.me 不得不说,上手AngularJS比我想象得难多了,把官网提供的PhoneCat例子看完,又跑到慕课网把大漠穷秋的AngularJS实战系列看了一遍 ...

  9. node的socket.io类库概述

    socket.io是一个简单的小类库,该类库实现的功能类似于node中的net模块所实现的功能. 这些功能包括websocket通信,xhr轮询,jsonp轮询等. socket类库可以接受所有与服务 ...

随机推荐

  1. Linux超快速安装Ruby on Rails

    Linux超快速安装Ruby on Rails 时间 2014-11-25 11:45:11 Flincllck Talk 原文  http://www.flincllck.com/quick-ins ...

  2. 在活动中使用Menu

    1.在res下创建menu普通文件夹,在menu下创建名为main的Menu资源文件 2.在menu组件下创建item组件:资源id,title标题名称 3.覆盖活动中的onCreateOptions ...

  3. Windows Azure 将正式更名为 Microsoft Azure

    微软的公共云平台在2014年4月3日正式从Windows Azure 更名为Microsoft Azure. windows azure是二级产品名,microsoft azure是一级产品名,和mi ...

  4. [摘]在ASP.NET MVC中使用DropDownList

    在ASP.NET MVC中,尽管我们可以直接在页面中编写HTML控件,并绑定控件的属性,但更方便的办法还是使用HtmlHelper中的辅助方法.在View中,包含一个类型为HtmlHelper的属性H ...

  5. 让我轻轻的告诉你AliSQLselect语句中in多少个合适

    在以往的分享中,不止一次被开发问: 在MySQL的官方手册上有这么一句话: the optimizer can estimate the row count for each range using ...

  6. 09A-独立按键消抖实验01——小梅哥FPGA设计思想与验证方法视频教程配套文档

    芯航线--普利斯队长精心奉献   实验目的: 1.复习状态机的设计思想并以此为基础实现按键消抖 2.单bit异步信号同步化以及边沿检测 3.在激励文件中学会使用随机数发生函数$random 4.仿真模 ...

  7. treeview所有节点递归解法(转+说明)或者说递归的实际应用

    public void PrintTreeViewNode(TreeNodeCollection node) { foreach (TreeNode n in node) { Response.Wri ...

  8. 自己动手写ORM框架

    提起ORM框架,大家都很熟悉,网上流行的ORM框架有很多,其中出名的有一些,不出名的更是数不胜数. 下面是自己实现的一个简单的ORM框架,实现了常用的增删查改功能,供大家研究ORM实现原理. 功能描述 ...

  9. IOS textView获取光标定位,以及选中

    当textview成为第一响应者的时候就会调用一个协议方法 - (void)textViewDidChangeSelection:(UITextView *)textView; 在这个协议方法中可以实 ...

  10. asp的gridview

    using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI ...