对于我的生活,我无法弄清楚我在这里做错了什么...我正在为多用户门户构建一个简单的通知系统,并尝试使用Signal R来完成Push通知。
我能够建立连接并将通知推送给所有用户足够好,但是要针对特定用户显示通知,我需要跟踪用户ID并将其映射到服务器上的connectionId。为此,我将用户ID的加密字符串传递给服务器,并将存储用户ID的对象列表存储到创建的连接ID中。但是,当尝试将加密的UserID作为查询字符串传递时,它不会通过它。我在这里乱搞的任何想法?
的Javascript
/////Connect to NotificationHub
var nHub = $.connection.notificationHub;
$.connection.notificationHub.qs = { "userId": "1A3BCF" };
////Register Add Notification Method
nHub.client.showNotification = function (message, icon, url) {
console.log("Notification Received!");
console.log("Message: " + message);
console.log("Icon: " + icon);
console.log("URL: " + url);
};
$.connection.hub.start()
.done(function () {
console.log("Successful Connection to Notification Hub");
})
.fail(function () {
console.log("Error Connecting to Notification Hub!");
});
C#Hub
List<NotificationConnection> connectedUsers = new List<NotificationConnection>();
public override Task OnConnected()
{
var us = new NotificationConnection();
us.userId= Context.QueryString['userId'];;
us.connectionId = Context.ConnectionId;
connectedUsers.Add(us);
return base.OnConnected();
}
public void showNotification(NotificationTargetType target, int objectId, string message, string icon, string url)
{
var hubContext = GlobalHost.ConnectionManager.GetHubContext<NotificationHub>();
if (target == NotificationTargetType.User)
{
var user = connectedUsers.Where(o => o.userId== objectId);
if (user.Any())
{
hubContext.Clients.Client(user.First().connectionId).showNotification(message, icon, url);
}
}
else
{
}
}
在我想要获取Querystring之前,一切都顺利进行,因为它不存在。
答案 0 :(得分:1)
正如Pawel所说,我正在向错误的项目添加qs。需要在connection.hub而不是实际的集线器上调用它。
$.connection.hub.qs = { "userId": "1A3BCF" };
感谢。