我不确定这里有什么问题,它必须是简单的愚蠢。但是我已经检查了所有内容,尝试了几种不同的东西,都没有成功。
服务器到客户端的通信效果很好。没问题。
但是当我打电话给notifications.server.test();
时,我什么都没得到。纳达。
我可以从服务器调用我的testFunction()并且它可以工作。但是调用hub的Test()方法(它只调用testFunction)并没有给我什么。
这是枢纽:
namespace XXXX.Hubs
{
[HubName("monitoringHub")]
public class MonitoringHub : Hub
{
[HubMethodName("sendCustomers")]
public static void SendCustomers()
{
IHubContext context = GlobalHost.ConnectionManager.GetHubContext<MonitoringHub>();
context.Clients.All.updateCustomers();
}
[HubMethodName("sendDetails")]
public static void SendDetails(string SONumber)
{
IHubContext context = GlobalHost.ConnectionManager.GetHubContext<MonitoringHub>();
context.Clients.All.updateDetails(SONumber);
}
[HubMethodName("test")]
public static void Test()
{
IHubContext context = GlobalHost.ConnectionManager.GetHubContext<MonitoringHub>();
context.Clients.All.testFunction();
}
}
}
客户端代码:
@section Scripts{
<script src="/Scripts/systemdetails.js"></script>
<script src="/Scripts/jquery.signalR-2.1.2.js"></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.monitoringHub;
//debugger;
// Create a function that the hub can call to broadcast messages.
notifications.client.updateDetails = function (sonumber) {
getDetails(sonumber)
};
notifications.client.testFunction = function () {
alert("Test Function");
};
// Start the connection.
$.connection.hub.start().done(function () {
//alert("connection started")
getDetails(@Model.Customer.SONumber.ToString());
setInterval(function (){
alert("Test Call");
notifications.server.test();
}, 5000);
}).fail(function (e) {
alert(e);
});
});
function getDetails(sonumber) {
if(sonumber = (@Model.Customer.SONumber.ToString())){
var tbl = $('#systemDetails');
$.ajax({
url: '/Monitoring/GetDetails/@Model.Customer.SONumber.ToString()',
contentType: 'application/html ; charset:utf-8',
type: 'GET',
dataType: 'html',
cache: false
}).success(function (result) {
storeVis();
tbl.empty().append(result);
}).complete(function(){
recallVis();
}).error(function () {
});
}
}
</script>
}
我的间隔函数按预期发出警报,然后它应该调用返回的hub方法并调用testFunction来发出第二个警报。当我尝试从客户端调用hub方法时,我无法触发第二个警报,但如果我在服务器端调用hub方法(或Clients.All.testFunction),它可以正常工作。是什么给了什么?
在服务器端,我尝试了不同的格式来调用服务器集线器,但现在应该是根据我所使用的版本的文档。
notifications.client.test()
不。
notifications.test()
不。
notifications.server.test()
没有。
答案 0 :(得分:2)
客户端无法查看您的功能,因为它们不是集线器实例的一部分。它们是静态的,因此SignalR集线器序列化程序不会将它们写入集线器的动态javascript文件。
如果必须具有静态函数以供其他类访问,则需要将非静态函数添加到调用静态函数的集线器类中。然后,您的客户将能够访问它们。