6

我无法让所服务的 defualt.htm 页面头部中包含的内容“工作”。html 在 dom 中加载,只是 CSS 和 JS 文件失败。有更好的选择吗?我希望将解决方案保留在 NodeJS 中,但也可以对 socket.io 和 express 开放。

谢谢,下面是我使用的。

NodeJS 服务页面

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

fs.readFile(__dirname+'/default.htm', function (err, html) {
    if (err) {
        throw err; 
    }       
    http.createServer(function(request, response) {  
        response.writeHeader(200, {"Content-Type": "text/html"});  
        response.write(html);  
        response.end();  
    }).listen(port.number);
});

Default.html 页面

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="utf-8" />
    <title></title>
    <link rel="stylesheet" href="objects/css/site.css" type="text/css" />
    <script src="objects/js/jquery.min.js" type="text/javascript"></script>
    <script src="objects/js/site.min.js" type="text/javascript"></script>
</head>

<body></body>    

</html>
4

5 回答 5

4

您的 Javascript 和样式失败,因为它们不存在。您当前的网络服务器只发送一个路由,即根路由。相反,您需要允许使用多条路线。ExpressJS 以一种更简单的方式为您做到这一点,但没有它仍然很有可能。

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


    var server = http.createServer(function(request, response){
       var header_type = "";
       var data        = "";
       var get = function (uri, callback) {
           // match `request.url` with uri with a regex or something.
           var regex = uri;
           if (request.url.match(regex)) {
               callback();
           }
       };    

       var render = function (resource) {
           // resource = name of resource (i.e. index, site.min, jquery.min)
           fs.readFile( __dirname + "/" + resource, function(err, file) {
              if (err) return false; // Do something with the error....
              header_type = ""; // Do some checking to find out what header type you must send.
              data = file;
           }
       };

       get('/', function(req, res, next) {
           // Send out the index.html
           render('index.html');
           next();
       });


       get('/javascript.min', function(req, res, next) {
          render('javascript.js');
          next();
       });


    });

    server.listen(8080);

这可能会让你开始,但你必须像next()你自己一样实现一些东西。一个非常简单的解决方案,但一个有效的解决方案。

响应静态文件的另一种解决方案是在http.createServer回调中创建一个捕获器。在该get方法中,如果 uri 不匹配,那么您将在public将完整 uri 与文件系统结构匹配的文件夹中查找。

于 2012-11-12T07:20:39.197 回答
3

试试这个怎么样:

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

http.createServer(function (request, response) {
console.log('request starting...');

var filePath = '.' + request.url;
if (filePath == './')
    filePath = './index.html';

var extname = path.extname(filePath);
var contentType = 'text/html';
switch (extname) {
    case '.js':
        contentType = 'text/javascript';
        break;
    case '.css':
        contentType = 'text/css';
        break;
    case '.json':
        contentType = 'application/json';
        break;
    case '.png':
        contentType = 'image/png';
        break;      
    case '.jpg':
        contentType = 'image/jpg';
        break;
    case '.wav':
        contentType = 'audio/wav';
        break;
}

fs.readFile(filePath, function(error, content) {
    if (error) {
        if(error.code == 'ENOENT'){
            fs.readFile('./404.html', function(error, content) {
                response.writeHead(200, { 'Content-Type': contentType });
                response.end(content, 'utf-8');
            });
        }
        else {
            response.writeHead(500);
            response.end('Sorry, check with the site admin for error: '+error.code+' ..\n');
            response.end(); 
        }
    }
    else {
        response.writeHead(200, { 'Content-Type': contentType });
        response.end(content, 'utf-8');
    }
});

}).listen(8125);
console.log('Server running at http://127.0.0.1:8125/');
于 2015-03-14T08:34:18.380 回答
3

好吧,您正在为default.htm所有请求提供文件。因此,当浏览器请求时objects/js/jquery.min.js,您的服务器会返回default.htm.

你真的应该考虑使用express或其他一些框架。

于 2012-11-12T07:18:56.257 回答
3

我也要把我的两分钱扔在这里。

我解决与提供静态文件相同的问题的方法是我开始使用 Paperboy 模块,现在该模块已被弃用,取而代之的是 Send 模块。

Anyhoo,我解决它的方法是在请求进入我的 GET 方法之前“劫持”请求并检查它的路径。

我“劫持”的方式如下

self.preProcess(self, request, response);

preProcess: function onRequest(app, request, response){ //DO STUFF }

如果路径包含 STATICFILES 目录,我会提供不同的文件服务,否则我会使用“html”路径。下面是//DO STUFF函数preProcess()

var path = urllib.parse(request.url).pathname;
if(path.indexOf(settings.STATICFILES_DIR) != -1) {
    path = settings.STATICFILES_DIR;
    requestedFile = request.url.substring(request.url.lastIndexOf('/') + 1, request.url.length);
    return resolver.resolveResourceOr404(requestedFile, request, response);
}

可能有更好的方法可以做到这一点,但这对于我需要它做的事情来说就像一种魅力。

然后使用 Paperboy 模块,使用resolver.resolveResourceOr404();函数像这样传递文件

resolveResourceOr404 : function (filename, httpRequest, httpResponse) {
    var root = path.join(path.dirname(__filename), '');

    paperboy.deliver(root, httpRequest, httpResponse)
    .error(function(e){
        this.raise500(httpResponse);
    })
    .otherwise(function(){
        this.raise404(httpResponse);
    });
}
于 2012-11-12T07:35:54.460 回答
2

你最好使用 Express 来处理这类事情。

像这样的东西可以完成这项工作。

应用程序.js

var express = require('express')
  , http = require('http')
  , path = require('path');

var app = express();

//Configure Your App and Static Stuff Like Scripts Css
app.configure(function(){
  app.set('port', process.env.PORT || 3000);
  app.set('views', __dirname + '/views'); // Your view folder
  app.set('view engine', 'jade');  //Use jade as view template engine
  // app.set("view options", {layout: false});  
  // app.engine('html', require('ejs').renderFile); //Use ejs as view template engine
  app.use(express.logger('dev'));

  app.use(express.bodyParser());
  app.use(express.methodOverride());
  app.use(express.cookieParser());
  app.use(app.router); 
  app.use(require('stylus').middleware(__dirname + '/public')); //Use Stylus as the CSS template engine
  app.use(express.static(path.join(__dirname, 'public'))); //This is the place for your static stuff
});


app.get('/',function(req,res){
  res.render('index.jade',{
    title:"Index Page 
    }
});

index是一个jade模板页面。它呈现为静态html,与express配合得很好。

对于所有页面的全局静态标题,您可以制作这样的模板并将其包含在任何页面中。

static_header.jade

  doctype 5
html
  head
    title= title
    script(src='/javascripts/jquery-1.8.2.min.js')   
    block header 
    link(rel='stylesheet', href='/stylesheets/style.css')
  body
    block content

最后是你的 index.jade,它使用 static_header 和自己的带有自己脚本的动态头。

extends static_header

block header
  script(src='/javascripts/jquery-ui-1.9.1.custom.js')
  script(src='http://jquery-ui.googlecode.com/svn/trunk/ui/i18n/jquery.ui.datepicker-tr.js')
  link(rel='stylesheet',href='/stylesheets/jquery-ui-1.9.1.custom.min.css')
block content
  h1= title

将这两个文件放在您的视图文件夹中并准备好滚动。

于 2012-11-12T07:19:27.307 回答