我刚刚用socket设置了一个基本的node.js服务器。在我的本地机器上。有没有办法设置文档根目录,以便您可以包含其他文件?Ie。下面我有一个DIV的背景图像。映像的路径相对于服务器的位置,但是这不起作用。什么好主意吗?谢谢!
var http = require('http'),
io = require('socket.io'), // for npm, otherwise use require('./path/to/socket.io')
server = http.createServer(function(req, res){
// your normal server code
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('<div style="background-image:url(img/carbon_fibre.gif);"><h1>Hello world</h1></div>');
});
server.listen(8080);
// socket.io
var socket = io.listen(server);
使用Express或Connect。示例:https://github.com/spadin/simple-express-static-server, http://senchalabs.github.com/connect/middleware-static.html
对于background-image样式,浏览器将创建一个全新的HTTP请求到您的服务器,路径为*img/carbon_纤维.gif*,这个请求肯定会攻击您的匿名函数,但是您的响应函数只写回一个div与ContentType: text/html无关。路径名,使图像不能正确显示。
你可以添加一些代码到你的函数中,如:
var http = require('http'),
io = require('socket.io'),
fs = require('fs'),
server = http.createServer(function(req, res){
// find static image file
if (/.gif$/.test(req.pathname)) {
fs.read(req.pathname, function(err, data) {
res.writeHead(200, { 'Content-Type': 'image/gif' });
res.end(data);
});
}
else {
// write your div
}
});
server.listen(8080);
我不太熟悉nodejs,所以上面的代码只演示了一个逻辑,而不是实际的可运行代码块。