您好我想在我的所有页面中使用socket.io,所以我想在Header.php中使用socket进行通知。但我不知道我该怎么做。
ForExample我想在我的xxxx.com/chat.php,xxxx.com/Messages.php和xxxx.com/MainPage.php页面中使用套接字。我写的是npm" node server.js"我只能使用localhost :(端口号)我就在这里使用它。我想在我的所有页面中使用它......我怎么能这样做?
这是我的服务器代码。
var app = require('express')();
var http=require('http').Server(app);
var io=require('socket.io')(http);
app.get("/",function(req,res){
res.sendfile(__dirname+"/index.html");
});
io.on('connection',function(socket){
console.log("User Connected");
});
var port=80;
http.listen(port,function(){
console.log(port+". port Listening..");
});
我想在我的XAMPP端口使用它我想听80端口。但我不能这样做。用户没有连接。我只能将index.html用于不同的80端口。