简体   繁体   中英

connecting socket to a specific path

i have a path localhost:3000/home to which i want to pass messages via socket.io.

My 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');
});

My html file

<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>

i get the following error in browser console :"GET http://localhost:3000/home/socket.io/?EIO=3&transport=polling&t=LA2Fcjf 404 (Not Found)"

Please correct me.

试试这个

var io = require('socket.io')(http,{ path: '/home/socket.io'});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM