Socketio 无法运行,io.connection 不是函数

发布于 2024-12-09 04:09:17 字数 445 浏览 0 评论 0 原文

在客户端使用此代码:

    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.js"></script>
    <script src="http://cdn.socket.io/stable/socket.io.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
                var socket = io.connect('http://localhost:8888');
});
</script>

收到此错误:

“io.connect 不是函数”

有什么建议吗?

Using this code on the client side:

    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.js"></script>
    <script src="http://cdn.socket.io/stable/socket.io.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
                var socket = io.connect('http://localhost:8888');
});
</script>

Getting this error:

"io.connect is not a function"

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笔芯 2024-12-16 04:09:17

答案是我必须使用运行此脚本的服务器的外部 IP 地址。

The answer was I had to use my external ip address for the server this script is running on.

忘羡 2024-12-16 04:09:17

最大的问题是 http://cdn.socket.io/stable/socket.io.js 是 Socket.IO 0.6 的代码,而您正在使用 Socket.IO 0.7+ API。

CDN 已被弃用,不应再使用。以下是有关如何在 HTML 页面中提供 socket.io 客户端服务的 wiki:https://github.com/LearnBoost/Socket.IO/wiki/How-do-I-serve-the-client

The biggest problem is that http://cdn.socket.io/stable/socket.io.js is code for Socket.IO 0.6 and you are using the Socket.IO 0.7+ API.

The CDN has been deprecated and should no longer be used. Here is a wiki about how to serve the socket.io client in your HTML pages: https://github.com/LearnBoost/Socket.IO/wiki/How-do-I-serve-the-client

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文