最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Unable to get property 'signalR' of undefined or null reference - Stack Overflow

programmeradmin1浏览0评论

I am trying the SignalR intro sample from here:

Following the sample, I got the error below after pressing F5:

Unhandled exception at line 17, column 5 in :12269/signalr/hubs

0x800a138f - JavaScript runtime error: Unable to get property 'signalR' of undefined or null reference

I am new to SignalR, not quite sure where to start. Any insight?

A screenshot of the error. It's part of the generated hubs script.

The source code on the index.html:

<!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.6.4.min.js"></script>
    <!--Reference the SignalR library. -->
    <script src="Scripts/jquery.signalR-2.1.0.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 ment.
                    $('#message').val('').focus();
                });
            });
        });
    </script>
</body>
</html>

I am trying the SignalR intro sample from here: http://www.asp/signalr/overview/signalr-20/getting-started-with-signalr-20/tutorial-getting-started-with-signalr-20

Following the sample, I got the error below after pressing F5:

Unhandled exception at line 17, column 5 in http://myServer.:12269/signalr/hubs

0x800a138f - JavaScript runtime error: Unable to get property 'signalR' of undefined or null reference

I am new to SignalR, not quite sure where to start. Any insight?

A screenshot of the error. It's part of the generated hubs script.

The source code on the index.html:

<!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.6.4.min.js"></script>
    <!--Reference the SignalR library. -->
    <script src="Scripts/jquery.signalR-2.1.0.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 ment.
                    $('#message').val('').focus();
                });
            });
        });
    </script>
</body>
</html>
Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Jul 8, 2014 at 15:17 smwikipediasmwikipedia 64.5k98 gold badges331 silver badges507 bronze badges 10
  • You get this error in your browser? – Daniel Commented Jul 8, 2014 at 15:32
  • @Daniel Yes, I am using IE 10. – smwikipedia Commented Jul 8, 2014 at 15:35
  • 1 Do you load the good version of JQuery before loading the hub? – Daniel Commented Jul 8, 2014 at 15:40
  • 1 Can you share the code where you load JQuery and where you define you connect the client to the hub? – Daniel Commented Jul 8, 2014 at 15:44
  • 1 Just to be sure. Do you have the JQuery script file "jquery-1.6.4.min.js" in the script folder? – Daniel Commented Jul 8, 2014 at 15:49
 |  Show 5 more ments

4 Answers 4

Reset to default 4

You have to reference the appropriate version of JQuery that you have in your Scripts folder.

I face the same issue while working on http://www.asp/signalr/overview/getting-started/tutorial-getting-started-with-signalr

really the issue is the copied HTML code from one of the instructions. the HTML refers to an older version of Jquery and jquery singnal R

<script src="Scripts/jquery-1.6.4.min.js"></script>
<!--Reference the SignalR library. -->
<script src="Scripts/jquery.signalR-2.1.0.min.js"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script src="signalr/hubs"></script>

update these values as per the current automatically loaded script versions as shown below

jQuery ($) is not defined, so :

  • it might not be loaded at all
  • it might be loaded after the signalIR file
  • you might be using noConflict

The error has to do with jQuery, not SignalR.

Notice the error message says Unable to get property 'signalR' of undefined or null reference. How can we get signalR from an undefined or null object.

To fix, make sure you're attaching jQuery to the page properly.

Again: This has nothing to do with SignalR being naughty, but just a case of the missing jQuery library.


To test if jQuery is actually loaded, run this in your console:

console.log($);

You should get the standard jQuery output. If that doesn't work, try this. If this works, it means you're having an issue with conflicting variables.

console.log(jQuery);
发布评论

评论列表(0)

  1. 暂无评论