我的客户代码如下。我有一个信号器路由和集线器连接名称。我能够连接到集线器并获取事件。现在,我需要为同一条路线再连接一个集线器以获取更多事件。
this.hubConnection = this.window.$.hubConnection();
this.hubConnection.url = this.apiUrl + "api/signalr";
this.hubProxy = this.hubConnection.createHubProxy("Event1Hub");
this.hubProxy = this.hubConnection.createHubProxy("Event2Hub"); // When I add this line it is overriding first hub and only connecting to Event2Hub.
我正在使用“signalr”:“2.3.0”,