21

我正在尝试学习 node.js 并且遇到了一些障碍。

我的问题是我似乎无法将外部 css 和 js 文件加载到 html 文件中。

GET http://localhost:8080/css/style.css 404 (Not Found) 
GET http://localhost:8080/js/script.css 404 (Not Found) 

(当时所有文件都在应用程序的根目录中)

我被告知在某种程度上模仿以下应用程序结构,为公共目录添加一个路由,以允许网络服务器提供外部文件。

我的应用程序结构是这样的

domain.com
  app/
    webserver.js

  public/
    chatclient.html

    js/
      script.js

    css/
      style.css

所以我的 webserver.js 脚本位于应用程序的根目录中,我想要访问的所有内容都在“公共”中。

我还看到了这个例子,它使用 path.extname() 来获取位于路径中的任何文件扩展名。(见最后一个代码块)。

所以我尝试将新的站点结构和这个 path.extname() 示例结合起来,让网络服务器允许访问我的公共目录中的任何文件,这样我就可以渲染引用外部 js 和 css 文件的 html 文件.

我的 webserver.js 看起来像这样。

var http = require('http')
, url = require('url')
, fs = require('fs')
, path = require('path')
, server;

server = http.createServer(function(req,res){

  var myPath = url.parse(req.url).pathname;

    switch(myPath){

      case '/public':

        // get the extensions of the files inside this dir (.html, .js, .css)
        var extname = mypath.extname(path);

          switch (extname) {

            // get the html
            case '.html':
              fs.readFile(__dirname + '/public/chatclient.html', function (err, data) {
                if (err) return send404(res);
                res.writeHead(200, {'Content-Type': 'text/html'});
                res.write(data, 'utf8');
                res.end();
              });
            break;

            // get the script that /public/chatclient.html references
            case '.js':
              fs.readFile(__dirname + '/public/js/script.js', function (err, data) {
                if (err) return send404(res);
                res.writeHead(200, { 'Content-Type': 'text/javascript' });
                res.end(content, 'utf-8');
                res.end();
              });
            break;

            // get the styles that /public/chatclient.html references
            case '.css':
              fs.readFile(__dirname + '/public/css/style.css', function (err, data) {
                if (err) return send404(res);
                res.writeHead(200, { 'Content-Type': 'text/javascript' });
                res.end(content, 'utf-8');
                res.end();
              });
          }
          break;

          default: send404(res);
        }
    });

在公共情况下,我试图通过 var extname = mypath.extname(path); 获取此目录中的任何文件夹/文件 类似于我提供的链接。

但是当我控制台记录它时,'extname' 是空的。

谁能建议我可能需要在这里添加或添加什么?我知道这可以在 Express 中轻松完成,但我想知道如何仅依靠 Node.js 来实现相同的目标。

我很感激这方面的任何帮助。

提前致谢。

4

6 回答 6

31

您的代码有几个问题。

  1. 您的服务器不会运行,因为您没有指定要监听的端口。
  2. 正如 Eric 指出的那样,您的案例条件将失败,因为 url 中没有出现“public”。
  3. 您在 js 和 css 响应中引用了一个不存在的变量“内容”,应该是“数据”。
  4. 您的 css 内容类型标头应该是 text/css 而不是 text/javascript
  5. 在正文中指定“utf8”是不必要的。

我已经重写了你的代码。注意我不使用 case/switch。我更喜欢简单得多的 if 和 else,如果这是你的偏好,你可以把它们放回去。在我的重写中不需要 url 和 path 模块,所以我已经删除了它们。

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

http.createServer(function (req, res) {

    if(req.url.indexOf('.html') != -1){ //req.url has the pathname, check if it conatins '.html'

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

    }

    if(req.url.indexOf('.js') != -1){ //req.url has the pathname, check if it conatins '.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();
      });

    }

    if(req.url.indexOf('.css') != -1){ //req.url has the pathname, check if it conatins '.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();
      });

    }

}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
于 2012-08-27T00:42:05.653 回答
8

您可能想研究使用像express这样的服务器框架,它允许您设置一个“公共”目录来自动路由静态文件

var express = require('express'),app = express();
app.use(express.static(path.join(__dirname, 'public')));

这样一个框架的廉价开销确实值得有效地“重新发明轮子”的努力

于 2012-08-26T23:16:42.500 回答
2

public没有出现在客户端请求的 URL 中,所以 myPath 上的开关总是会失败。

于 2012-08-26T23:07:11.333 回答
1

您可以考虑查看 Connect 中提供的静态中间件。查看 Static 的源代码可能会给您一些关于如何使用 node.js 代码执行此操作的想法(如果您想了解如何在不使用现有库的情况下执行此操作)。

于 2012-08-27T00:36:21.563 回答
1

更改时自动更新文件,更新延迟 1 秒。格式:app.js | 索引.htm | 样式.css

// packages
const http = require('http');
const fs = require('fs');
// server properties
const hostname = '127.0.0.1';
const port = 3000;
const timer = 300;

//should trigger atualize function every timer parameter
let htmlfile = '';
let cssfile = '';
let jsfile = '';

uptodate();

// should read file from the disk for html
function uptodate()
{
  console.log(1);
   fs.readFile('./index.html', function (err, html) {
    if (err) {
      throw err; 
    }       
    htmlfile = html;
  });
  // should read css from the disk for css
   fs.readFile('./style.css', function (err, html) {
    if (err) {
      throw err; 
    }       
    cssfile = html;
  });

  // should read js file from the disk
  fs.readFile('./app.js', function (err, html) {
    if (err) {
      throw err; 
    }       
    jsfile = html;
  });
  setTimeout(function(){ uptodate(); }, 1000);
}
const server = http.createServer((req, res) => {
  res.statusCode = 200;

  // should send css and js
  if(req.url.indexOf('.css') != -1){ //req.url has the pathname, check if it conatins '.js'
   res.writeHead(200, {'Content-Type': 'text/css'});
   res.write(cssfile);
   res.end();
   return;
  }
  if(req.url.indexOf('.js') != -1){ //req.url has the pathname, check if it conatins '.js'
   res.writeHead(200, {'Content-Type': 'text/javascript'});
   res.write(jsfile);
   res.end();
   return;
  }
  // should send html file via request
  res.writeHeader(200, {"Content-Type": "text/html"});  
  res.write(htmlfile);
  res.end();
});

// should send css and js 

server.listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
});
于 2017-07-20T05:13:55.453 回答
0
    // get the extensions of the files inside this dir (.html, .js, .css)
    var extname = **mypath**.extname(path);

这些是相反的。应该:

   var extension = path.extname(mypath);

当我可以避免时,我也不使用函数名作为变量名。

于 2014-05-22T19:59:49.117 回答