Browse Source

2 alerts bug is fixed in 06 Union objects

pocu46 4 years ago
parent
commit
f7eca67cfc
3 changed files with 36 additions and 24 deletions
  1. 1 1
      06/script.js
  2. 35 22
      Chat/index.html
  3. 0 1
      Pre-React/myproject

+ 1 - 1
06/script.js

@@ -146,6 +146,6 @@ let taskToStart = prompt("Введите название задания");
 
 for(let key in taskNames) {
     if(key === taskToStart) {
-        alert(taskNames[key]());
+        taskNames[key]();
     }
 }

+ 35 - 22
Chat/index.html

@@ -1,25 +1,38 @@
 <!DOCTYPE HTML>
 <html>
-    <head>
-        <title>
-            Static File Index.HTML
-        </title>
-        <script src='https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js'></script>
-    </head>
-    <body>
-        <input id="nick" type="text" >
-        <input id="message" type="text" >
-        <!-- <input id="send" type="button" >
-     -->
-     <button id="send">send</button>
-        <div id='formContainer'>
-        </div>
-        <script>
-            const socket = io('http://192.168.1.20:5000/')
-            // socket.emit
-            send.onclick=() =>{
-console.log(nick.value+'   '+ message.value)
-}
-        </script>
-    </body>
+
+<head>
+    <title>
+        Static File Index.HTML
+    </title>
+    <script src='https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js'></script>
+</head>
+
+<body>
+    <div id="chatContainer"></div>
+
+    <input id="nick" type="text">
+    <input id="message" type="text">
+    <button id="send">send</button>
+    <!-- <div id='formContainer'> -->
+    <!-- </div> -->
+    <div id="chatId">Chat History</div>
+
+    <script>
+        const socket = io('http://localhost:4000/')
+        socket.on("msg", function (msg) {
+            console.log(msg);
+            chatId.innerHTML += '<br/>' + msg.nick + ':  ' + msg.message;
+            // chatId.innerHTML += `<br/> ${msg.nick}: ${msg.message}`;
+        });
+
+        send.onclick = () => {
+            socket.emit("msg", {
+                nick: nick.value,
+                message: message.value
+            });
+        }
+    </script>
+</body>
+
 </html>

+ 0 - 1
Pre-React/myproject

@@ -1 +0,0 @@
-Subproject commit 7db34bdb31b508b75e5cd0983789edc96d38cc5b