gpt4 book ai didi

websocket - 断开连接时重新连接 stomp

转载 作者:行者123 更新时间:2023-12-04 17:59:28 29 4
gpt4 key购买 nike

我正在使用以下代码创建/订阅主题并处理消息。有时连接丢失并且错误显示:

Whoops! The connection was lost...

我想知道有没有办法重新连接它。是否可以在错误回调中或在方法中定义整个代码并在错误回调中递归调用它?

 $(document).ready(function () {
........
...............
try {
var socket = new SockJS("${createLink(uri: '/stomp')}");
var client = Stomp.over(socket);
client.connect({}, function () {
client.subscribe("/topic/${userInstance?.username}",
function (message) {
............
....................

});
});
} catch (error) {
console.log("ERROR: " + error.toString());
}
});

最佳答案

我设法使用失败回调来完成它并再次连接。只要失败,它就会继续尝试。

关于websocket - 断开连接时重新连接 stomp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37278587/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com