2016-12-26 119 views

回答

0

我想你需要廣播給所有的用戶。以下示例顯示了向所有客戶端廣播按摩的基本代碼。每次您撥打SendNotifications(" massage")時,所有用戶都會收到您的按摩。

public class EmployeeHub : Hub 
{ 

    public void SendNotifications(string message) 
{ 
    Clients.All.receiveNotification(message); 
} 
} 

和網頁:

<body> 
<input id="text1" type="text" /> 
<input id="button1" type="button" value="Send" /> 
<ul id="discussion"> 
</ul> 
<!--Reference the jQuery library. --> 
<script src="Scripts/jquery-1.6.4.min.js" type="text/javascript"></script> 
<!--Reference the SignalR library. --> 
<script src="Scripts/jquery.signalR-1.1.3.js" type="text/javascript"></script> 
<!--Reference the autogenerated SignalR hub script. --> 
<script src="signalr/hubs"></script> 
<script type="text/javascript"> 
    $(function() { 
     // Declare a proxy to reference the hub. 
     var notifications = $.connection.employeeHub; 
     // Create a function that the hub can call to broadcast messages. 
     notifications.client.receiveNotification = function (message) { 
      // alert(" says '" + message + "'"); 
      // Html encode display name and message.     
      var encodedMsg = $('<div />').text(message).html(); 
      // Add the message to the page. 
      $('#discussion').append('<li>' + encodedMsg + '</li>'); 
     }; 
     // Start the connection. 
     $.connection.hub.start().done(function() { 

     }); 
    }); 
</script> 

+0

雖然有效,但此代碼在問題中列出的示例(例如計時器或其他服務器端事件)中不起作用,所以下調投票。 – thab

1

使用this answer,並在服務器端運行的後臺任務。

不在集線器內部,因爲它們的生命週期是每個請求。

+0

這個答案是正確的 – thab

相關問題