Open iutx opened 3 months ago
I use
"sockjs-client": "^1.5.1", "stompjs": "^2.3.3",
to connect websocket
const socket = new SockJS(url); stompClient = Stomp.over(socket); stompClient.connect({}, (frame) => { console.log('Connected: ' + frame); stompClient.subscribe(`/topic/${databaseName}/public`, (messageOutput) => { const message = JSON.parse(messageOutput.body); console.log(message); showMessage(message.sender + ':' + message.content); }); });
that throw Whoops! Lost connection to error.
Whoops! Lost connection to
But i import same version "sockjs-client": "^1.5.1" with mini.js
"sockjs-client": "^1.5.1"
<script src="https://cdn.jsdelivr.net/npm/sockjs-client@1.5.0/dist/sockjs.min.js"></script>
const socket = new window.SockJS(url);
all things ok.
It's very confusing to me. What is the direction of troubleshooting, thanks!
Desc
I use
to connect websocket
that throw
Whoops! Lost connection to
error.But i import same version
"sockjs-client": "^1.5.1"
with mini.jsall things ok.
It's very confusing to me. What is the direction of troubleshooting, thanks!