index.html 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>websocket demo</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7. <style>
  8. .row {
  9. margin: 1rem
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <div class='row'>发送方:
  15. <select id='sender'>
  16. <option value="Bob" selected>Bob</option>
  17. <option value="Alice">Alice</option>
  18. <option value="Jack">Jack</option>
  19. </select>
  20. </div>
  21. <div class='row'>接收方:
  22. <select id='receiver'>
  23. <option value="Bob">Bob</option>
  24. <option value="Alice" selected>Alice</option>
  25. <option value="Jack">Jack</option>
  26. </select>
  27. </div>
  28. <textarea id='msg' class='row' rows="10" cols="30"></textarea>
  29. <div class='row'>
  30. <button id='sendBtn'>发送</button>
  31. </div>
  32. <h3 class='row'>收到的消息:</h3>
  33. <div id='conversation' class='row'></div>
  34. <script>
  35. var sender = document.getElementById('sender');
  36. var receiver = document.getElementById('receiver');
  37. var conversation = document.getElementById('conversation');
  38. var sendBtn = document.getElementById('sendBtn');
  39. var socket = null;
  40. var createSocket = function () {
  41. if (socket) {
  42. socket.close();
  43. }
  44. var url = 'ws://' + window.location.host + '/ws/' + sender.options[sender.selectedIndex].value;
  45. socket = new WebSocket(url);
  46. socket.onopen = function () {
  47. console.log('connected to ' + url);
  48. }
  49. socket.onmessage = function (event) {
  50. var data = JSON.parse(event.data);
  51. conversation.innerHTML = conversation.innerHTML + data.from + ':' + data.content + '<br/>';
  52. }
  53. socket.onclose = function () {
  54. console.log('close connect to' + url);
  55. }
  56. };
  57. var sendMessage = function () {
  58. var msg = document.getElementById('msg').value;
  59. var bd=JSON.stringify({
  60. from: sender.options[sender.selectedIndex].value,
  61. content: msg,
  62. to: receiver.options[receiver.selectedIndex].value
  63. })
  64. console.log(bd)
  65. fetch('/rest/message', {
  66. method: 'POST',
  67. headers: {
  68. 'Content-type': 'application/json',
  69. },
  70. body: bd
  71. }).then(res => {
  72. return res.json();
  73. }).then(data => {
  74. if (!data.succeed) {
  75. alert(data.msg);
  76. }
  77. })
  78. };
  79. sender.onchange = function () {
  80. createSocket();
  81. }
  82. sendBtn.onclick = function () {
  83. sendMessage();
  84. }
  85. createSocket();
  86. </script>
  87. </body>
  88. </html>