我有以下node.js服务器端代码:
var app = require('http').createServer(handler)
, io = require('socket.io').listen(app)
, fs = require('fs')
app.listen(8888);
var fn='/home/eamorr/workspace/node_proxy_remote5/data';
function handler (req, res) {
fs.readFile(__dirname + '/index.html',
function (err, data) {
if (err) {
res.writeHead(500);
return res.end('Error loading index.html');
}
res.writeHead(200);
res.end(data);
});
}
io.sockets.on('connection', function (socket) {
fs.watchFile(fn,function(curr,prev){
//curr.time
fs.readFile(fn,function(err,data){
socket.emit('data',data.toString());
console.log(data);
});
});
});
正如你所看到的,我正在查看一个文件并将修改发送到浏览器。
在客户端,我有:
<html>
<head>
<script src="/socket.io/socket.io.js"></script>
<script type="text/javascript" src="./jqPlot/jquery.min.js"></script>
<script type="text/javascript" src="./jqPlot/jquery.jqplot.min.js"></script>
<script type="text/javascript" src="./jqPlot/plugins/jqplot.canvasTextRenderer.min.js"></script>
<script type="text/javascript" src="./jqPlot/plugins/jqplot.canvasAxisLabelRenderer.min.js"></script>
<link rel="stylesheet" type="text/css" href="./jqPlot/jquery.jqplot.min.css" />
</head>
<body>
<script type="text/javascript">
var socket = io.connect('http://localhost:8888');
socket.on('data', function (data) {
console.log(data);
//socket.emit('my other event', { my: 'data' });
});
</script>
<div id="chart2" style="height:300px; width:500px;"></div>
<script type="text/javascript">
$(document).ready(function(){
var plot2 = $.jqplot ('chart2', [[3,7,9,1,5,3,8,2,5]], {
// Give the plot a title.
title: 'Bandwidth over port 10001',
// You can specify options for all axes on the plot at once with
// the axesDefaults object. Here, we're using a canvas renderer
// to draw the axis label which allows rotated text.
axesDefaults: {
labelRenderer: $.jqplot.CanvasAxisLabelRenderer
},
// Likewise, seriesDefaults specifies default options for all
// series in a plot. Options specified in seriesDefaults or
// axesDefaults can be overridden by individual series or
// axes options.
// Here we turn on smoothing for the line.
seriesDefaults: {
rendererOptions: {
smooth: true
}
},
// An axes object holds options for all axes.
// Allowable axes are xaxis, x2axis, yaxis, y2axis, y3axis, ...
// Up to 9 y axes are supported.
axes: {
// options for each axis are specified in seperate option objects.
xaxis: {
label: "X Axis",
// Turn off "padding". This will allow data point to lie on the
// edges of the grid. Default padding is 1.2 and will keep all
// points inside the bounds of the grid.
pad: 0
},
yaxis: {
label: "Y Axis"
}
}
});
});
</script>
</body>
</html>
正如您所看到的,我正在尝试使用jqPlot绘制一个图表,其中包含从服务器发送的数据。
这个代码的问题是,如果我导航到http://localhost:80,该图显示良好,但没有启动websocket。如果我导航到http://localhost:8888,图形不会显示,但websocket工作正常!如何组合node.js和jQuery?
非常感谢,
Server将Socket绑定到特定端口,并根据寻址端口重定向到系统的数据。
您的Apache也在处理特定的端口。它具有绑定到特定端口的侦听套接字。默认情况下为80。
当您导航到localhost:80时,您的浏览器将创建与Apache的连接,它们将交换一些数据和html。
然后,当您使用JS创建WebSocket时,浏览器会创建套接字并尝试连接到提供的地址和端口。如果您的WebSocket服务器绑定到端口8888,则它将成功连接到它。
然后,如果您试图在浏览器顶部localhost:8888中导航,会发生的情况是,浏览器创建了与服务器的连接,但在8888端口上,您有WebSockets服务器,它们会连接,但握手和其他操作会失败。
在Apache中托管文件是一个端口,websockets服务器是另一个端口。查看一些关于什么是端口以及它们是如何工作的信息。