We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Whoops! Lost connection to
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.
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/[email protected]/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!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.jsconst socket = new window.SockJS(url);
all things ok.
It's very confusing to me.
What is the direction of troubleshooting, thanks!
The text was updated successfully, but these errors were encountered: