17

我有一个 asp.net 经典网站。我让 SignalR 基本功能正常工作(一个客户端向其余客户端发送消息)。但现在我只想将消息发送到特定的连接 ID。

我的集线器:

**    [HubName("chatHub")]
    public class ChatHub : Hub 
    {
        public static List<string> messages = new List<string>();

        public void GetServiceState()
        {
            Clients.updateMessages(messages);
        }

        public void UpdateServiceState()
        {
            messages.Add(DateTime.Now.ToString("dd/MM/yyyy HH:mm:ss"));

            Clients.updateMessages(messages);
        }

    }**

ASP代码:

        <script type="text/javascript">
            $(function () {
                // creates a proxy to the health check hub

                var healthCheckHub = $.connection.chatHub;
                console.log($.connection.hub)
                // handles the callback sent from the server
                healthCheckHub.updateMessages = function (data) {
                    $("li").remove();

                    $.each(data, function () {
                        $('#messages').append('<li>' + this + '</li>');
                        console.log($.connection);
                    });
                };

                $("#trigger").click(function () {
                    healthCheckHub.updateServiceState();
                });

                // Start the connection and request current state
                $.connection.hub.start(function () {
                    healthCheckHub.getServiceState();
                });


            });

问题是我真的不知道如何使用集线器发送到一个特定的 ConnectionID,因为 Clients.updateMessages(messages); 向他们所有人发送消息。我该如何解决这个问题?

PS:我已经看过:Send server message to connected clients with Signalr/PersistentConnection

http://riba-escapades.blogspot.dk/2012/05/signalr-send-messages-to-single-client.html

那没有用。

4

1 回答 1

33

好吧,您可以像这样从 Hub 向单个客户端发送消息:

Clients.Client(someConnectionIdIWantToSendToSpecifically).doSomething();

诀窍是您需要知道要将消息发送到的连接 ID。更具体地说,您可能还想知道要发送消息的事物的逻辑标识,因为该逻辑标识可能有多个连接,或者在完全不同的连接 ID 下断开并重新连接。将连接映射到逻辑标识是 SignalR 留给应用程序本身的事情。

于 2012-11-12T18:48:16.423 回答