【问题标题】:SignalR chat not connecting to the Hub?SignalR 聊天未连接到集线器?
【发布时间】:2017-03-11 20:18:33
【问题描述】:

我正在尝试在 asp.net 中创建一个信号器聊天室我收到以下错误“未捕获的类型错误:无法读取未定义的属性 'chatHub'”并且没有出现提示。 我按照本教程https://www.asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr 对启动类进行了修改。

Startup.cs..

using Microsoft.AspNet.SignalR;
using Microsoft.Owin;
using Owin;

[assembly: OwinStartupAttribute(typeof(MyTrainer.Startup))]
namespace MyTrainer
{
    public partial class Startup
    {
        public void Configuration(IAppBuilder app)
        {
            ConfigureAuth(app);

            var config = new HubConfiguration();

            config.EnableDetailedErrors = true;
            config.EnableJavaScriptProxies = true;

            app.MapSignalR("/signalr", config);
        }
    }
}

我的视图 (ChatRoom.cshtml)...

@{
    ViewBag.Title = "ChatRoom";
}

<!DOCTYPE html>
<html>
<head>
    <title>SignalR Simple Chat</title>
    <style type="text/css">
        .container {
            background-color: #99CCFF;
            border: thick solid #808080;
            padding: 20px;
            margin: 20px;
        }
    </style>
</head>
<body>
    <div class="container">
        <input type="text" id="message" />
        <input type="button" id="sendmessage" value="Send" />
        <input type="hidden" id="displayname" />
        <ul id="discussion"></ul>
    </div>
    <!--Script references. -->
    <!--Reference the jQuery library. -->
    <script src="../Scripts/jquery-1.11.3.min.js"></script>
    <!--Reference the SignalR library. -->
    <script src="../Scripts/jquery.signalR-2.2.1.min.js"></script>
    <!--Reference the autogenerated SignalR hub script. -->
    <script src="../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;
            // Create a function that the hub can call to broadcast messages.
            chat.client.broadcastMessage = function (name, message) {
                // Html encode display name and message.
                var encodedName = $('<div />').text(name).html();
                var encodedMsg = $('<div />').text(message).html();
                // Add the message to the page.
                $('#discussion').append('<li><strong>' + encodedName
                    + '</strong>:&nbsp;&nbsp;' + encodedMsg + '</li>');
            };
            // Get the user name and store it to prepend to messages.
            $('#displayname').val(prompt('Enter your name:', ''));
            // Set initial focus to message input box.
            $('#message').focus();
            // Start the connection.
            $.connection.hub.start().done(function () {
                $('#sendmessage').click(function () {
                    // Call the Send method on the hub.
                    chat.server.send($('#displayname').val(), $('#message').val());
                    // Clear text box and reset focus for next comment.
                    $('#message').val('').focus();
                });
            });
        });
    </script>
</body>
</html>

我的中心...

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Microsoft.AspNet.SignalR;

namespace MyTrainer
{
    public class ChatHub : Hub
    {
        public void Send(string name, string message)
        {
            Clients.All.broadcastMessage(name, message);
        }
    }
}

我的控制器..

public ActionResult ChatRoom()
{
    return View();
}

谢谢!

【问题讨论】:

    标签: javascript jquery asp.net signalr asp.net-mvc-5


    【解决方案1】:

    我在布局页面中渲染全日历脚本,这与信号 r 的脚本混淆

    【讨论】:

      【解决方案2】:

      你应该在连接服务器的时候捕捉到错误信息,你可以添加“.fail”,你可能遇到的错误之一是由于版本。

        $.connection.hub.start().done(function () {
              $('#sendmessage').click(function () {
                  // Call the Send method on the hub.
                  chat.server.send($('#displayname').val(), $('#message').val());
                  // Clear text box and reset focus for next comment.
                  $('#message').val('').focus();
              });
          }).fail(function (reason) {
              console.log("SignalR connection failed: " + reason);
          });
      

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2016-10-29
        • 1970-01-01
        • 1970-01-01
        • 2015-09-09
        • 2015-07-09
        • 1970-01-01
        • 2019-10-07
        • 2013-10-14
        相关资源
        最近更新 更多