使用子目录时,socket.io不起作用

时间:2013-12-19 03:16:12

标签: socket.io

我刚遇到问题。 当我在root目录使用socket.io时。它效果很好。

app.js

app.get('/', function (req, res) {
    res.sendfile(__dirname + '/index.html');
});

的index.html

var socket = io.connect('http://host.tw:8080/');
socket.emit('remote:request',{});

但是当我将代码更改为:

app.js

app.get('/test', function (req, res) {
    res.sendfile(__dirname + '/index.html');
});

的index.html

var socket = io.connect('http://host.tw:8080/test');
socket.emit('remote:request',{});

它不起作用。

有任何帮助吗?感谢。

0 个答案:

没有答案