0

我写了以下代码:

var http = require('http');
var fs = require('fs');

var fileName = 'site/index.html';
var encoding = 'utf-8';
var dataContent = "";

fs.readFile(fileName, encoding, function(error, data) {
    if(error) throw error;
    dataContent = data;
});

var requestListener = function(request, response) {
    response.writeHead(200, {
        'Content-Length': dataContent.length,
        'Content-Type': 'text/html',
        'connection': 'keep-alive',
        'accept': '*/*'
    });

    response.end(dataContent);
}

var server = http.createServer(requestListener, function(connect) {
    connect.on('end', function() {
        console.log('Server disconnected...');
    });
});

server.listen(8000, function() {
    console.log("Server is listening...");
});

我在站点目录中有 2 个文件:

 1. index.html
 2. aboutus.html

第 1 步:我使用 node 命令作为 node runServer.js 运行上述代码

第2步:现在我打开浏览器并输入以下网址

http://localhost:8000/

浏览器正确地向我显示了 index.html 的内容。index.html 文件包含一些原始文本并链接到另一个文件,即 aboutus.html

第三步:当我点击 aboutus.html 的链接时,浏览器将 url 更改为以下

http://localhost:8000/aboutus.html

但是 aboutus.html 的内容没有显示,而是显示了 index.html 的内容

我知道发生这种情况是因为 fileName 变量内容为“site/index.html”。所以浏览器正在渲染 index.html 内容

我怎样才能改变这种行为?如果我不使用 express.js


现在,我对以下代码进行了一些更改:

var http = require('http');
var fs = require('fs');
var path = require('path');

var fileName = "site/index.html";
var encoding = 'utf-8';
var dataContent = "";

function readContentFile(fileName) {
    console.log(fileName);
    fs.readFile(fileName, encoding, function(error, data) {
        if(error) throw error;
        dataContent = data;
    });
}

readContentFile(fileName);

var requestListener = function(request, response) {

    filePath = request.url;    
    if(filePath!='/') {
        fileName = 'site' + filePath;
        readContentFile(fileName);
    }

    response.writeHead(200, {
        'Content-Length': dataContent.length,
        'Content-Type': 'text/html',
        'connection': 'keep-alive',
        'accept': '*/*'
    });

    response.end(dataContent);
}

var server = http.createServer(requestListener, function(connect) {



    connect.on('end', function() {
        console.log('Server disconnected...');
    });
});

server.listen(8000, function() {
    console.log("Server is listening...");
});

仍然无法正常工作,我的代码有什么问题吗?或者我应该去 express.js

4

1 回答 1

1

我创建了一个静态服务器的示例

看看@http ://runnable.com/UUgnuT2wDj1UAGSe

var http = require('http');
var fs = require('fs');
var path = require('path');

http.createServer(function (req, res) {
  if (req.url === '/') {
    req.url = '/index.html';
  }
  var file = path.join(__dirname,req.url);
  path.exists(file, function (exists) {
    if (exists) {
      fs.stat(file, function (err, stats) {
        if(err) {
          throw err;
        }
        if (stats.isFile()) {
          res.writeHead(200, {'Content-Type': 'text/html; charset=utf-8'});
          fs.createReadStream(file).pipe(res);
        } else {
          res.writeHead(404);
          res.end('not found');
        }
      });
    } else {
      res.writeHead(404);
      res.end('not found');
    }
  });
}).listen( 8000 );

console.log('Server running on port ' + 8000);

注意:这是使用节点 0.6.x 之后,api 发生了一些变化,fs.exists,而不是 path.exists。

于 2013-03-19T09:14:54.713 回答