一起使用node-static和journey

时间:2011-08-28 10:11:57

标签: node.js journey node-static

我第一次使用Node.js.我正在使用node-static提供静态文件,并使用journey进行路由。不幸的是,这两者似乎相互冲突,我不确定阻止冲突的最佳方法。我的服务器看起来像这样:

var http = require('http');
var nodeStatic = require('node-static');
var journey = require('journey');

var fileServer = new nodeStatic.Server('./public');
var router = new journey.Router;


module.exports = http.createServer(function (req, res) {
  router.get('/api').bind(function (req, res) {
    res.send(200);
  });
var fileServer = new nodeStatic.Server('./public');
var router = new journey.Router;


module.exports = http.createServer(function (req, res) {
  router.get('/api').bind(function (req, res) {
    res.send(200);
  });

  req.addListener('end', function () {
    fileServer.serve(req, res);

    router.handle(req, '', function (result) {
      res.writeHead(result.status, result.headers);
      res.end(result.body);
    });
  });
});

这个问题是Journey路由器发送了404响应。我设法使其工作的唯一方法是在end监听器中执行此操作:

  req.addListener('end', function () {
    router.handle(req, '', function (result) {
      if (result.status === 404) {
        fileServer.serve(req, res);
      }
      else {
        res.writeHead(result.status, result.headers);
        res.end(result.body);
      }
    });
  });

但这似乎不是我应该处理事情的方式。我做错了什么?

1 个答案:

答案 0 :(得分:1)

我找到了a gist showing how to use node-static with journey。我基本上是对的。我很高兴听到任何其他解决方案!