diff options
Diffstat (limited to 'files/zh-tw/glossary/websockets/index.html')
-rw-r--r-- | files/zh-tw/glossary/websockets/index.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/files/zh-tw/glossary/websockets/index.html b/files/zh-tw/glossary/websockets/index.html new file mode 100644 index 0000000000..7aca64282e --- /dev/null +++ b/files/zh-tw/glossary/websockets/index.html @@ -0,0 +1,29 @@ +--- +title: WebSockets +slug: Glossary/WebSockets +translation_of: Glossary/WebSockets +--- +<p><em>WebSocket</em> 是允許{{Glossary("Server", "伺服器")}}與用戶端之間發起持續性的 {{Glossary("TCP")}} 連接,以便隨時交換資料的{{Glossary("protocol", "協定")}}。</p> + +<p>任何用戶端與伺服器端程式都能使用 WebSocket,不過一般來說,大都是在{{Glossary("Browser", "網路瀏覽器")}}與伺服器之間發起的。伺服器藉由 WebSocket 可以在用戶端沒有事先請求的情況下,將數據傳遞給用戶端,以便動態更新資料。</p> + +<h2 id="深入理解">深入理解</h2> + +<h3 id="一般常識">一般常識</h3> + +<ul> + <li>維基百科的 {{Interwiki("wikipedia", "Websocket")}}</li> +</ul> + +<h3 id="技術參考">技術參考</h3> + +<ul> + <li><a href="/zh-TW/docs/Web/API/WebSocket">MDN 的 WebSocket 參考</a></li> +</ul> + +<h3 id="學習之">學習之</h3> + +<ul> + <li><a href="/zh-TW/docs/WebSockets/Writing_WebSocket_client_applications">製作 WebSocket 客戶端應用程式</a></li> + <li><a href="/zh-TW/docs/WebSockets/Writing_WebSocket_servers">製作 WebSocket 伺服器</a></li> +</ul> |