mongodb - SignalR 核心 - 错误 : Websocket closed with status code: 1006

标签 mongodb signalr

我在 Angular 应用程序中使用 SignalR。当我在 Angular 中销毁组件时,我还想停止与集线器的连接。我使用命令:

this.hubConnection.stop();

但我在 Chrome 控制台中收到错误消息: Websocket 已关闭,状态码为:1006

在边缘:错误错误:未捕获( promise 中):错误:由于连接关闭而取消调用。错误:由于连接关闭而取消调用。

它确实有效并且连接已停止,但我想知道为什么会出现错误。

这就是我启动集线器的方式:

this.hubConnection = new HubConnectionBuilder()
      .withUrl("/matchHub")
      .build();

    this.hubConnection.on("MatchUpdate", (match: Match) => {
      // some magic
    })

    this.hubConnection
      .start()
      .then(() => {
        this.hubConnection.invoke("SendUpdates");
      });

编辑

我终于找到问题了。它是由来自 Mongo 的更改流引起的。如果我从 SendUpdates() 方法中删除代码,则会触发 OnDisconnected。

    public class MatchHub : Hub
    {
    private readonly IMatchManager matchManager;

    public MatchHub(IMatchManager matchManager)
    {
        this.matchManager = matchManager;
    }

    public async Task SendUpdates() {
        using (var changeStream = matchManager.GetChangeStream()) {
            while (changeStream.MoveNext()) {
                var changeStreamDocument = changeStream.Current.FullDocument;
                if (changeStreamDocument == null) {
                    changeStreamDocument = BsonSerializer.Deserialize<Match>(changeStream.Current.DocumentKey);
                }
                await Clients.Caller.SendAsync("MatchUpdate", changeStreamDocument);
            }
        }
    }

    public override async Task OnDisconnectedAsync(Exception exception)
    {
        await base.OnDisconnectedAsync(exception);
    }
}

来自管理器的方法 GetChangeStream。

        ChangeStreamOptions options = new ChangeStreamOptions() { FullDocument = ChangeStreamFullDocumentOption.UpdateLookup };
        var watch =  mongoDb.Matches.Watch(options).ToEnumerable().GetEnumerator();
        return watch;

但我不知道如何解决。

最佳答案

这可能有很多原因,但我认为很可能是这个:

I think this is because of how the server is handling the connected / disconnected events. I can't say for sure but the connection closing needs to handled correctly on the server also with code. Try overriding the built in On Connected /Disconnected methods on the server and see. My assumption only is that you're closing it but the server isn't closing properly and therefore not relaying the proper closed response.

在以下位置作为评论找到:getting the reason why websockets closed with close code 1006

您不需要更改连接/断开连接,因为 evrything 工作正常。但作为答案,这是最有可能的。

关于mongodb - SignalR 核心 - 错误 : Websocket closed with status code: 1006,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53944572/

相关文章:

c# - 如何向 SignalR 传递参数 Kendo UI DataSource 的读取操作

Node.js Mongoose 并使用 find 和 request.params

mongodb - 在 mongodb 中查找和替换 NumberLong 类型的字段

JQuery 3 和 SignalR 2.2.0

azure - 使用 Azure SignalR 收到无效协商响应

c# - SignalR 2.0 CORS Chrome 禁用网络安全奇怪行为

mysql - Mongodb 在通知存储和检索方面比 Mysql DB 更好吗?

c# - 如果元素不存在,如何更新/插入 MongoDB C# 驱动程序中文档的子数组

python - 从客户端获取 Mongo 主机

javascript - 将复杂类型从 SignalR hub 传递到 javascript