Dalam artikel sebelumnya siri ini, "WebSocket dengan JavaScript dan Bun", kami meneroka cara untuk memulakan pelayan yang mampu mengendalikan kedua-dua permintaan HTTP dan sambungan WebSocket.
Kami menentukan peraturan untuk permintaan HTTP untuk menyampaikan fail index.html apabila permintaan dibuat kepada /. Fail index.html mengandungi logik sisi klien untuk mewujudkan sambungan dengan pelayan WebSocket dan menghantar mesej sebagai pelanggan.
Dalam kaedah pengambilan pelayan yang dijelaskan dalam "WebSocket dengan JavaScript dan Bun" dilaksanakan kod ini:
if (url.pathname === "/") return new Response(Bun.file("./index.html"));
Ini bermakna apabila permintaan penyemak imbas dibuat ke http://localhost:8080/, kandungan fail index.html dihantar ke penyemak imbas.
HTML akan menghasilkan bentuk ringkas dengan teks input dan butang serta menghantar logik untuk menyambung ke pelayan WebSocket sebagai pelanggan.
<!doctype html> <html> <head> <title>WebSocket with Bun and JavaScript</title> <script> let echo_service; append = function (text) { document .getElementById("websocket_events") .insertAdjacentHTML("beforeend", "<li>" + text + ";</li>"); }; window.onload = function () { echo_service = new WebSocket("ws://127.0.0.1:8080/chat"); echo_service.onmessage = function (event) { append(event.data); }; echo_service.onopen = function () { append("? Connected to WebSocket!"); }; echo_service.onclose = function () { append("Connection closed"); }; echo_service.onerror = function () { append("Error happens"); }; }; function sendMessage(event) { console.log(event); let message = document.getElementById("message").value; echo_service.send(message); } </script> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" /> </head> <body> <main> <h2> Explaining the client code </h2> <p>This code creates a simple <strong>WebSocket client</strong> in a browser to interact with a WebSocket server. Here's a detailed explanation of its components:</p> <hr> <h3> The HTML structure </h3> <pre class="brush:php;toolbar:false"><!doctype html> <html> <head> <title>WebSocket with Bun and JavaScript</title> </head> <body> <main> <ul> <li>The input field (<input> <li>The submit button (<input type="button">): when clicked, it triggers the sendMessage(event) function to send the typed message to the server.
window.onload = function () { echo_service = new WebSocket("ws://127.0.0.1:8080/chat"); ... };
Pelanggan WebSocket mempunyai empat pengendali acara utama:
if (url.pathname === "/") return new Response(Bun.file("./index.html"));
<!doctype html> <html> <head> <title>WebSocket with Bun and JavaScript</title> <script> let echo_service; append = function (text) { document .getElementById("websocket_events") .insertAdjacentHTML("beforeend", "<li>" + text + ";</li>"); }; window.onload = function () { echo_service = new WebSocket("ws://127.0.0.1:8080/chat"); echo_service.onmessage = function (event) { append(event.data); }; echo_service.onopen = function () { append("? Connected to WebSocket!"); }; echo_service.onclose = function () { append("Connection closed"); }; echo_service.onerror = function () { append("Error happens"); }; }; function sendMessage(event) { console.log(event); let message = document.getElementById("message").value; echo_service.send(message); } </script> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" /> </head> <body> <main> <h2> Explaining the client code </h2> <p>This code creates a simple <strong>WebSocket client</strong> in a browser to interact with a WebSocket server. Here's a detailed explanation of its components:</p> <hr> <h3> The HTML structure </h3> <pre class="brush:php;toolbar:false"><!doctype html> <html> <head> <title>WebSocket with Bun and JavaScript</title> </head> <body> <main> <ul> <li>The input field (<input> <li>The submit button (<input type="button">): when clicked, it triggers the sendMessage(event) function to send the typed message to the server.
window.onload = function () { echo_service = new WebSocket("ws://127.0.0.1:8080/chat"); ... };
echo_service.onopen = function () { append("? Connected to WebSocket!"); };
echo_service.onmessage = function (event) { append(event.data); };
echo_service.onclose = function () { append("Connection closed"); };
echo_service.onerror = function () { append("Error happens"); };
Fungsi utiliti ini menambah acara dan mesej WebSocket pada
insertAdjacentHTML("beforeend", "
function sendMessage(event) { let message = document.getElementById("message").value; echo_service.send(message); }
PicoCSS menyediakan penggayaan yang ringan dan elegan untuk halaman, memastikan borang dan log acara kelihatan digilap tanpa CSS tersuai tambahan.
Artikel ini meneroka cara melaksanakan klien WebSocket untuk berkomunikasi dengan pelayan WebSocket. Dalam artikel sebelumnya dalam siri ini, kami menumpukan pada penstrukturan pelayan WebSocket asas.
Dalam artikel seterusnya, kami akan meneroka fungsi WebSocket dengan lebih lanjut dengan melaksanakan logik penyiaran. Ciri ini membolehkan mesej daripada satu pelanggan dimajukan kepada semua pelanggan yang disambungkan, menjadikannya penting untuk membina aplikasi masa nyata seperti sistem sembang, alatan kerjasama atau pemberitahuan langsung.
Nantikan!
Atas ialah kandungan terperinci Pelanggan WebSocket dengan JavaScript. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!