1

よくある質問に書かれていることをすべて試しましたが、直面したすべての問題を回避するのに役立ちました。

(Uncaught TypeError: Cannot read property 'chat' of undefined )

これが私のコードです:

[[

<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());
            });
        });
    });
]]
4

1 に答える 1

0

参考までに、「チャット」を定義するときに、.js で [[ , ]] 二重角括弧を使用しましたか?

于 2013-02-07T19:12:02.890 に答える