我是使用SignalR(今天开始)的新手,非常简单地向所有连接的客户端发送消息,但现在我想发送给一个组。我找不到关于如何在客户端加入的简单文档。如果有人可以提供帮助,我怎么能简单地加入javascript方面的小组。谢谢你的帮助。
public class EventHub : Hub
{
public void SendNewMedia(MediaInfoViewModel model,Guid eventId)
{
Clients.Group(eventId.ToString()).setupmedia(model);
}
}
//Controller that is sending client new data
var eventHub = GlobalHost.ConnectionManager.GetHubContext<EventHub>();
var result = eventHub.Clients.Group(eventId.ToString()).setupmedia(eventViewer);
//Finally the javascript. Not sure how to setup just for a group
$(function () {
var event = $.connection.eventHub;
event.client.setupmedia = function (newMedia) {
$('#photolist').prepend('<li><img src="' + newMedia.MediaUrl + '" class="img-polaroid span2"/></li>');
};
$.connection.hub.start(function() {
event.server.create(eventID);//I know this is wrong but not sure how to connect
}).done(function () {
alert('conntected. Ready to retrieve data!');
});
});
答案 0 :(得分:31)
你做不到。如果你可以从javascript加入一个组,那么任何人都可以使用你的代码加入任何破坏安全性的组。如果您确实需要这样做 - 在服务器端创建一个方法,该方法将组名作为参数并将客户端添加到组中。
public void JoinGroup(string groupName)
{
this.Groups.Add(this.Context.ConnectionId, groupName);
}
然后,像那样从JS中调用它
eventHub.server.joinGroup("my-awsm-group");
答案 1 :(得分:0)
以防万一,就像我一样,现在您遇到了这个问题,下面是一个示例,说明如何实现azure函数来支持组。
答案 2 :(得分:0)
----------------------------在Javascript(ReactJs)中----------------- ----------------
const connection = new signalR.HubConnectionBuilder()
.withUrl("connectionUrl")
.build();
connection.start().then(res => {
connection.invoke("JoinGroup", "groupName") //JoinGroup is C# method name
.catch(err => {
console.log(err);
});
}).catch(err => {
console.log(err);
});;
----------------在C#(.Net Core)中-----------------
public class NotificationHub : Hub
{
public Task JoinGroup(string groupName)
{
return Groups.AddToGroupAsync(Context.ConnectionId, groupName);
}
}