0
SignalR在IE10拋出這個錯誤:SignalR拋出錯誤在IE10
SCRIPT12008: WebSocket Error: Incorrect HTTP response. Status code 500, Internal Server Error
在Chrome中一切都如預期運行。 ,我使用的代碼:
<!--Reference the SignalR library.-->
<script src="@Url.Content("~/Scripts/jquery.signalR-2.1.2.min.js")"></script>
<!--Reference the autogenerated SignalR hub script-->
<script src="@Url.Content("~/signalr/hubs")"></script>
<!--Add script to update the page and send messages.-->
<script type="text/javascript">
$(function() {
//Declare a proxy to reference the hub.
var chat = $.connection.chatHub;
chat.on('broadcastMessage', function (userId, conversationId, message) {
NewMessages();
});
$.connection.hub.start();
});
</script>
這是樞紐:
public class ChatHub : Hub
{
public void Send(string userId,string conversationId, string message)
{
//Call the broadcastMessage method to update clients.
Clients.All.broadcastMessage(userId, conversationId,message);
}
}
服務器方法「Send」獲得的正確調用,但客戶端「broadcastMessage」簡化版,。 我做了一些閱讀,IE10支持SignalR。有人有一個想法,爲什麼這不起作用?
在代碼中加入解釋總是很好的...... – 2014-12-02 12:26:44