系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 网络编程 > JavaScript > 详细页面

基于node+vue实现简单的WebSocket聊天功能

时间:2020-02-02来源:系统城作者:电脑系统城

首先,我需要用到node的nodejs-websocket模块

使用yarn进行安装

yarn add nodejs-websocket --save

当然,你也可以用npm进行安装

npm i nodejs-websocket --save

安装完毕之后,我们开始写服务端的代码,首先,我用node在本地起了一个node服务器用来开启websocket服务

sock.js:


 
  1. let ws = require("nodejs-websocket");
  2. console.log("开始建立链接");
  3. ws.createServer(function (conn) {
  4. conn.on("text", function (str) {
  5. console.log("收到的信息为", str);
  6. conn.send(`${str}(机器人`)
  7. });
  8. conn.on("close", function (code, reason) {
  9. console.log("关闭连接")
  10. });
  11. conn.on("error", function (code, reason) {
  12. console.log("异常关闭")
  13. })
  14. }).listen(8001);
  15. console.log("链接建立完毕");

服务端主要是用nodejs-websocket用来开启服务,以及返回前端需要的值,这里我只是做了一个简单的处理,在接受值得后面加了一个‘机器人'的string,

然后,我们需要开启这个node服务,

命令后面的路径一定要找对,我是把sock.js放在了根目录的socket文件夹下面

执行

yarn socket  

最后,看我们的客户端,客户端我是想有一个输入框,然后有个聊天框:


 
  1. <template>
  2. <div class="test3">
  3. <div class="msg" ref="box">
  4. <div v-for="item in list" :class="[item.type,'msg-item']">
  5. <p>
  6. {{item.content}}
  7. </p>
  8. </div>
  9. </div>
  10. <div class="input-group">
  11. <input type="text" v-model="contentText">
  12. <button @click="sendText">发送</button>
  13. </div>
  14. </div>
  15. </template>
  16.  
  17. <script>
  18. export default {
  19. name: "index3",
  20. data() {
  21. return {
  22. list: [],//聊天记录的数组
  23. contentText: "",//input输入的值
  24. }
  25. },
  26. methods: {
  27. //发送聊天信息
  28. sendText() {
  29. let that = this;
  30. this.list = [...this.list, {type: "mine", content: this.contentText}];//通过type字段进行区分是自己(mine)发的还是系统(robot)返回的
  31. this.backText(function () {
  32. that.contentText = "";//加回调在得到返回数据的时候清除输入框的内容
  33. });
  34. },
  35. backText(callback) {
  36. let that = this;
  37. if (window.WebSocket) {
  38. let ws = new WebSocket("ws://192.168.11.169:8001");
  39. ws.onopen = function (e) {
  40. console.log("链接服务器成功");
  41. console.log("that.contentText is", that.contentText);
  42. ws.send(that.contentText);
  43. callback();
  44. };
  45. ws.onclose = function (e) {
  46. console.log("服务器关闭")
  47. };
  48. ws.onerror = function () {
  49. console.log("服务器出错")
  50. };
  51. ws.onmessage = function (e) {
  52. that.list = [...that.list, {type: "robot", content: e.data}]
  53. }
  54. }
  55. }
  56. },
  57. watch: {
  58. //监听list,当有修改的时候进行div的屏幕滚动,确保能看到最新的聊天
  59. list: function () {
  60. let that = this;
  61. setTimeout(() => {
  62. that.$refs.box.scrollTop = that.$refs.box.scrollHeight;
  63. }, 0);
  64. //加setTimeout的原因:由于vue采用虚拟dom,我每次生成新的消息时获取到的div的scrollHeight的值是生成新消息之前的值,所以造成每次都是最新的那条消息被隐藏掉了
  65. }
  66. },
  67. mounted() {
  68. }
  69. };
  70.  
  71.  
  72. </script>
  73.  
  74. <style scoped lang="scss">
  75. .test3 {
  76. text-align: center;
  77. }
  78.  
  79. .msg {
  80. width: 100px;
  81. height: 100px;
  82. overflow: auto;
  83. padding-top: 5px;
  84. border: 1px solid red;
  85. display: inline-block;
  86. margin-bottom: 6px;
  87.  
  88. .msg-item {
  89. position: relative;
  90. overflow: hidden;
  91. p {
  92. display: inline-block;
  93. border-radius: 40px;
  94. background: #3C3D5A;
  95. color: white;
  96. float: left;
  97. padding: 2px 12px;
  98. margin: 0 0 2px 0;
  99. max-width: 70%;
  100. text-align: left;
  101. box-sizing: border-box;
  102. }
  103.  
  104. &.mine {
  105. p {
  106. float: right;
  107. background: aquamarine;
  108. color: white;
  109. }
  110. }
  111. }
  112. }
  113. </style>

看一下最终效果:

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载