我有一个路径localhost:3000 / home我想通过socket.io传递消息。 mu js file
`var express = require('express');
var app = express();
var http = require('http').Server(app);
var path = require("path");
var io = require('socket.io')(http);
app.get('*', function (req, res){
res.sendFile(path.join(__dirname, '/Public'));
});
app.use('/home',express.static(path.join(__dirname,'/Public')));
//app.use('/static', express.static(__dirname + 'index.html'));
io.on('connection', function (socket) {
socket.on('message', function (data) {
console.log(data)
socket.emit('news', { hello: 'world' });
});
socket.on('another-message', function (data) {
socket.emit('not-news', { hello: 'world' });
});
});
http.listen(3000, function(){
console.log('listening on *:3000');
});`
我的html文件
<html>
<h1>working</h1>
<script src="/socket.io/socket.io.js"></script>
<script>
var ioPath = "";
iopath = '/' + 'home'+ '/socket.io'
var socket = io.connect('http://localhost:3000', { path : iopath});
//var socket = io.connect('http://localhost:3000');
socket.on('connect',function(){
socket.emit('message',{ 'msg' :'Hello server'});
//socket.emit('message', 'Hello server');
});
socket.on('news', function (data) {
console.log(data);
socket.emit('my other event', { my: 'data' });
});
</script>
<body>
<ul id="messages"></ul>
<form id ="target" action="">
<input id="m" autocomplete="off" /><button>Send</button>
</form>
</body>
</html>
我在浏览器控制台中收到以下错误:&#34; GET http://localhost:3000/home/socket.io/?EIO=3&transport=polling&t=LA2Fcjf 404(未找到)&#34;
请纠正我。
答案 0 :(得分:1)
尝试一下这个
var io = require('socket.io')(http,{ path: '/home/socket.io'});