我正在使用 SignalR 向我的客户发送实时更新的消息。
在 Chrome、Firefox 和 IE 中接收消息工作正常。意思是,我可以从我的服务器从我的集线器发送一些东西,它可以毫无问题地到达客户端。
public void Receive(string whatever)
{
// This correctly invokes a function on the clients end.
Client.sayHello("Test");
}
从客户端向服务器发送消息在 Firefox 和 IE 中都不起作用,但在 Google Chrome 21 上可以正常工作。
在 Firefox 上,使用 Firebug 的控制台,这些是页面加载后立即触发的事件序列:
GET http://localhost:12962/signalr/signalr/negotiate?_=1348547579430 200 OK 12ms
POST http://localhost:12962/signalr/signalr/send?transport=serverSentEvents&connectionId=b6fdd67f-6a71-4e5f-80cf-9e2b90cc7fe3 200 OK
在 Google Chrome 上,该 POST 永远不会被调用,也许这就是它在那里工作的原因。我所看到的只是一个 POSTnegotiate
和connect
. 这是我在学习完教程之后所期待的,自从SignalR 出现以来,我一直期待着!
在 Firefox 上,每次我单击应该向服务器发送消息的按钮时,都会在控制台中记录:
$(document).ready(function() {
var chat = $.connection.chat;
/* Actions when someone clicks the Bid button. */
$(".pujar").click(function () {
chat.receive($(this).siblings('.auction-id').text());
$(this).parent().siblings('.seconds').text('15');
});
chat.updateAuction = function (message) {
var result = $.parseJSON(message);
var divId = "#" + result.AuctionId;
$(divId + " .seconds").text("15");
$(divId + " .stat .amount").html("$" + result.LanceCost);
$(divId + " .stat .latestbidder").html(result.LatestBidder);
$(divId + " .stat").fadeOut().fadeIn();
};
$.connection.hub.start();
});
POST http://localhost:12962/signalr/signalr/send?transport=serverSentEvents&connectionId=b6fdd67f-6a71-4e5f-80cf-9e2b90cc7fe3 200 OK 16ms
Params
connectionId b6fdd67f-6a71-4e5f-80cf-9e2b90cc7fe3
transport serverSentEvents
Post
data {"hub":"chat","method":"Receive","args":["1"],"state":{},"id":1}
Response
{"State":{},"Result":null,"Id":"1","Error":null,"StackTrace":null}
任何想法是什么导致了这个非常奇怪的问题?