我刚遇到问题。 当我在root目录使用socket.io时。它效果很好。
app.get('/', function (req, res) {
res.sendfile(__dirname + '/index.html');
});
var socket = io.connect('http://host.tw:8080/');
socket.emit('remote:request',{});
但是当我将代码更改为:
app.get('/test', function (req, res) {
res.sendfile(__dirname + '/index.html');
});
var socket = io.connect('http://host.tw:8080/test');
socket.emit('remote:request',{});
它不起作用。
有任何帮助吗?感谢。