我想在瀏覽器端構建一個相對於頁面URI的WebSocket URI。就是說,在我的情況下轉換HTTP的URI像如何構建相對於頁面URI的WebSocket URI?
http://example.com:8000/path
https://example.com:8000/path
到
ws://example.com:8000/path/to/ws
wss://example.com:8000/path/to/ws
我在做什麼現在是「WS」替換第4個字母「HTTP」,並追加「/到/ ws「。有沒有更好的方法呢?
你說的'路徑/要/ ws'是什麼意思?這導致了什麼?謝謝 – slevin