我正在使用SignalR進行應用程序。SignalR IE9跨域請求不起作用
集線器放置在運行帶有IIS 8的Windows Server 2012的一臺服務器上。 http://mentor.cloudapp.net/mass/rexona/previa/signalr/hubs。
的Signalr成立看起來像這樣:
var match;
$(document).ready(function() {
$.connection.hub.loging = true;
match = $.connection.match;
match.client.addMessage = function (message) {
var vm = {
avatar: message.ProfileImageLocation,
content: message.Text,
user: message.UserScreenName,
obj: JSON.stringify(message)
};
alert(vm.obj);
}
$.connection.hub.url = 'http://mentor.cloudapp.net/mass/rexona/previa/signalr';
$.connection.hub.start().done(function() {
match.server.addToGroup("97-987-PP");
}).fail(function() {
//alert("fail!");
});
一切完美的作品在Chrome中,FF,Opera和在IE10,但使用IE9的時候訪問它應用失敗。
我錯過了連接的設置?我是否需要在服務器上啓用其他功能才能使用IE9?
謝謝。
你有沒有得到這個工作? – stricq