signalR-Web套接字连接数据:[]在ASP.Net MVC中启动连接后

时间:2019-03-14 11:27:22

标签: websocket asp.net-mvc-5 signalr signalr-hub signalr.client

我当前的应用程序具有在线投票流程 这以前是使用signalR较早版本- 1.1.4

构建的功能

&该在线功能可以在旧版本中完美运行

但是后来我们做了一些.net版本升级,我们也决定升级signalR。 因此我们将其升级为 2.0.3

为此,我也必须添加Startup.cs类。

示例代码

 $(function () {
    debugger;
    var notificationHub = $.connection.NotificationHub;
    $.connection.hub.start().done(function () {
        $('.btnSaveRecommendation').on('click', function (e) {
            var agendaGroupItemId = e.delegateTarget.id;
            notificationHub.server.sendMeetingAgendaGroupItemRecommendedActionReplace('@Model.Organization', '@Model.MeetingId', agendaGroupItemId);
        });
    }).fail(function (error) {
        alert("Failed to connect!");
    });;
});

enter image description here enter image description here enter image description here enter image description here JavaScript Web References

我仍然不知道为什么会这样。 为了确定这个问题,我已经使用SignalR 2.0.3创建了另一个项目 及其完美的工作 enter image description here enter image description here enter image description here

我添加了图像,然后相信您可以对此有所了解。 您能帮我解决这个问题吗?

0 个答案:

没有答案