我正在尝试将SignalR与MVC4 c#项目一起使用,仅向所选客户端发送推送通知。 为此,我使用&context; Clients.Client'通过存储' Context.ConnectionId'在c#静态变量{因为无法使用与signalr的会话}。 但是因为' contextConnectionId'是一个静态变量;邮件仍会发送给所有客户:(
有没有替代会话信号或任何其他优雅的方式来做到这一点? (发现很少相关的帖子,但没有具体答案)
代码如下:
的javaScript
$(document).ready(function (){
{
var chat = $.connection.PushNotify;
chat.client.addNewMessageToPage = function (type, message) {
if(type == "something")
{
alert(message);
}
}
// Start the connection.
$.connection.hub.start().done(function () {
chat.server.send($('').val(), $('').val());
});
)}
在c#HUB
[HubName("PushNotify")]
public class PushNotify : Hub
{
public void Send(string name, string message)
{
//assume its c# static variable
GlobalVariable.contextConnectionId = Context.ConnectionId;
}
}
public class PushNotification
{
public void SendMessage(string message, string type = "msg")
{
if (!string.IsNullOrEmpty(GlobalVariable.contextConnectionId))
{
var context = GlobalHost.ConnectionManager.GetHubContext<PushNotify>();
context.Clients.Client(GlobalVariable.contextConnectionId).addNewMessageToPage(type, message);
}
}
}
答案 0 :(得分:9)
我不认为你的例子会按预期工作。将连接映射到静态变量时,实际上会将静态变量覆盖到最后一个名为Send method的连接。
连接到集线器的每个客户端都会传递唯一的连接ID。您可以 在集线器的Context.ConnectionId属性中检索此值 上下文。
这意味着您的GlobalVariable.contextConnectionId
不能是简单的字符串。您必须以某种方式映射您的客户端,并且每个客户端都将具有唯一的连接ID。也许字典在这里就足够了,或者拥有包含更多信息的类。 (即浏览器信息,IP加法器......)
(引用来自此链接)这可以帮助您:http://www.asp.net/signalr/overview/guide-to-the-api/mapping-users-to-connections
修改强>
提供更多信息:
我相信您问题的最简单的解决方案是使用群组。 http://www.asp.net/signalr/overview/guide-to-the-api/working-with-groups
您的集线器类将包含一个加入组的方法:
public Task JoinGroup(string groupName)
{
return Groups.Add(Context.ConnectionId, groupName);
}
public Task LeaveGroup(string groupName)
{
return Groups.Remove(Context.ConnectionId, groupName);
}
让我们说PostMessage只发送到给定组的组:
public void SendMessage(string groupName, string message, string type = "msg")
{
var context = GlobalHost.ConnectionManager.GetHubContext<PushNotify>();
context.Clients.Group(groupName).addNewMessageToPage(type, message);
}
当您的客户加入时,他们可以连接到一个组,其他所有内容都将由SignalR处理。
从客户端加入群组并发布消息:
var chat = $.connection.PushNotify;
$.connection.hub.start().done(function () {
chat.server.joinGroup("Group1");
chat.server.sendMessage("Group1", "Hi There");
});
接收消息是相同的
chat.client.addNewMessageToPage = function (type, message) {
...
}
其他解决方案
另一种解决方案可能是使用您自己的映射或SignalR连接映射。这些解决方案需要覆盖OnConnected和OnDisconnected方法并映射您的连接。即:
private readonly static ConnectionMapping<string> _connections =
new ConnectionMapping<string>();
public override Task OnConnected()
{
string name = Context.User.Identity.Name;
_connections.Add(name, Context.ConnectionId);
return base.OnConnected();
}
public override Task OnDisconnected(bool stopCalled)
{
string name = Context.User.Identity.Name;
_connections.Remove(name, Context.ConnectionId);
return base.OnDisconnected(stopCalled);
}
public void SendChatMessage(string who, string message)
{
string name = Context.User.Identity.Name;
foreach (var connectionId in _connections.GetConnections(who))
{
Clients.Client(connectionId).addChatMessage(name + ": " + message);
}
}
就像在这个例子中一样:http://www.asp.net/signalr/overview/guide-to-the-api/mapping-users-to-connections#inmemory