从nodejs读取css文件

时间:2016-06-10 18:59:11

标签: html css node.js

如何让节点js读取我的css文件。我通过下面的代码读取了html文件。

function displayForm(res) {
fs.readFile('index.html', function (err, data) {
    res.writeHead(200, {
        'Content-Type': 'text/html',
    });
    res.write(data);
    res.end();
});
 }

1 个答案:

答案 0 :(得分:2)

你可以这样做

<强> HTML

fs.readFile(__dirname + '/public/index.html', function (err, data) {
  if (err) console.log(err);
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.write(data);
  res.end();
});

<强> JS

fs.readFile(__dirname + '/public/js/script.js', function (err, data) {
  if (err) console.log(err);
  res.writeHead(200, {'Content-Type': 'text/javascript'});
  res.write(data);
  res.end();
});

<强> CSS

fs.readFile(__dirname + '/public/css/style.css', function (err, data) {
  if (err) console.log(err);
  res.writeHead(200, {'Content-Type': 'text/css'});
  res.write(data);
  res.end();
});