Express Handlebars-Page正在路由到404

时间:2016-05-21 00:30:17

标签: javascript html node.js express handlebars.js

我正在使用安装了快速和快速把手包的节点创建页面。我试图在我的所有页面上创建一个菜单,通过该菜单我可以通过单击按钮跳转到页面。我的前2个超链接运行正常,然后当我决定添加aboutMe页面和测试页面时,它们都重定向到404。 文件结构

static.js

 |
Views

  ---home.handlebars
  ---404.handlebars
  ---other-page.handlebars
  ---aboutMe.handlebars
  ---testing.handelbars
     Layouts
     |
      main.handlebars

我的static.js上的代码:

var express = require('express');

var app = express();
var handlebars =require('express-      handlebars').create({defaultLayout:'main'});
var bodyParser = require('body-parser');

app.use(bodyParser.urlencoded({extended:false}));
app.use(bodyParser.json());

app.engine('handlebars', handlebars.engine);
app.set('view engine', 'handlebars');
app.set('port', 3000);

app.get('/', function(req,res){
      res.render('home');
}

app.get('/other-page', function(req,res){
    res.render('other-page');
});

app.get('/aboutMe', function(req,res){
    res.render('aboutMe');
});

app.get('/testing', function(req,res){
    res.render('testing');
});

app.use(function(req,res){
    res.status(404);
    res.render('404');
});

app.use(function(err,req,res,next){
    console.error(err.stack);
    res.type('plain/text');
    res.status(500);
    res.render('500');
});

app.listen(app.get('port'), function(){
    console.log('Express started on http://localhost:' + app.get('port') +'; press Ctrl-C to terminate.');
});

我的main.handlebars中的一个片段,其中我链接:     家     其它页面     关于     测试

1 个答案:

答案 0 :(得分:1)

我们,经过几个小时的轰炸,我已经解决了我的问题。我意识到我有一个节点永远在static.js上运行,我对文件进行了更改,直到我停止并重新启动static.js上的节点时才会发生这些更改。 :)