问题描述
我想在我的 apache 服务器上运行 socket.io 的客户端.
I want to run client side of socket.io on my apache server.
我已将 socket.io 目录上传到我的网络服务器,并尝试了来自主站点的简单客户端连接示例 socket.io 但它不起作用.我不知道我需要什么才能让它工作并连接我正在运行的服务器.
I have uploaded the socket.io directory to my web server and tried the simple client connection example from the main site socket.io but its not working. I dont know what do I need to get it work and connect my running server.
希望,我已经清楚地解释了我的问题.
I Hope, I have clearly explained my problem.
谢谢.
推荐答案
将 socket.ioode_modulessocket.io-clientdist
中的所有文件复制到你的 apache 服务器,例如复制到js
文件夹.然后将 socket.io.min.js
添加到您的页面.
Copy all the files in socket.ioode_modulessocket.io-clientdist
to your apache server for example to the js
folder. Then add the socket.io.min.js
to your page.
<script src="js/socket.io.min.js" type="text/javascript"></script>
<script type="text/javascript">
var socket = io.connect('http://localhost:3000');
socket.on('news', function (data) {
console.log(data);
});
</script>
这篇关于如何在 apache 服务器上运行 socket.io(仅限客户端)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!