SignalR Connection Blocked Until page images load

2019-05-30 04:20发布

this is my signalr hub connection :

  chat = $.connection.chat;
  $.connection.hub.start().done(function () {
     // problem is here 
     // this part is waiting for full page load.!
  });

why signalr connection waits for my page contents to load complete? i have a <img src='BAD SERVER'/>sometimes take 2 minutes to load successfully. and the connection is waiting for images loaded.!

how can i fix this problem ?

1条回答
干净又极端
2楼-- · 2019-05-30 05:00

Try this:

chat = $.connection.chat;
$.connection.hub.start({ waitForPageLoad: false }).done(function () {
 // problem is here 
 // this part is waiting for full page load.!
});
查看更多
登录 后发表回答