来自客户端的集线器方法未在ASP.NET Core SignalR中调用

时间:2019-02-11 07:27:44

标签: c# asp.net-core signalr.client asp.net-core-signalr

我正在将SignalR添加到我的应用中。我可以从服务器向客户端发送消息,但是不能从客户端调用集线器方法。这是我的集线器界面:

public interface IGeneralHub
{
    Task BroadcastMessage(HubMessage msg); //string type, string payload);
    Task JoinHub(List<int> ids);
}

和中心客户端:

public class AuctionHub : Hub<IGeneralHub>
{
    public void Broadcast(HubMessage msg)
    {
        Clients.All.BroadcastMessage(msg);
    }
    public void JoinHub(List<int> ids)
    {
        foreach (var id in ids.Distinct())
            Groups.AddToGroupAsync(Context.ConnectionId, id.ToString());
    }
}

和客户端:

this.hubConnections = new signalR.HubConnectionBuilder()
                    .withUrl(`${environment.hubHost}/document/`)
                    .build();

this.hubConnections.start()
                    .then(() => console.log('Connection started'))
                    .catch(err => console.log('Error while starting connection: ' + err));

this.hubConnections.invoke('joinGroup', JSON.parse(localStorage.getItem('ws-document')));

我收到消息,但从未调用joinGroup。我在做什么错了?

1 个答案:

答案 0 :(得分:3)

  

我收到消息,但从未调用joinGroup。我在做什么错了?

这是因为您的JoinGroup类中没有AuctionHub方法。应该改为JoinHub如下:

this.hubConnections.invoke('joinHub', JSON.parse(localStorage.getItem('ws-document')));