无法读取未定义的属性'chat'

时间:2013-02-07 19:07:13

标签: asp.net-mvc-4 signalr

我尝试过所有用FAQ编写的文章,它帮助我避免了我遇到的所有问题,除了

  

(未捕获的TypeError:无法读取未定义的属性'chat')

这是我的代码:

[[

<script src="http://code.jquery.com/jquery-1.8.2.min.js" type="text/javascript"></script>
<script src="~/Scripts/jquery.signalR-1.0.0-rc2.min.js" type="text/javascript"></script>
 <script src="~/signalr/hubs" type="text/javascript"></script> 

<script type="text/javascript">
    $(function () {

        // Proxy created on the fly          
        var chat = $.connection.chat;

        // Declare a function on the chat hub so the server can invoke it          
        chat.client.addMessage = function (message) {
            $('#messages').append('<li>' + message + '</li>');
        };


        // Start the connection
        $.connection.hub.start().done(function() {
            $("#broadcast").click(function () {
                // Call the chat method on the server
                chat.server.send($('#msg').val());
            });
        });
    });
]]

1 个答案:

答案 0 :(得分:0)

只是为了帮助,当您定义'聊天'时,您在.js中使用了[[,]]双方括号吗?