Express,Jade,& NodeJS:在页面之间导航

时间:2015-03-08 10:31:30

标签: javascript node.js express pug

如何创建一个有两个按钮的Jade页面,每个按钮都会重定向到另一个用Jade制作的页面?

1 个答案:

答案 0 :(得分:14)

这是我为您的问题所做的代码:

<强> server.js

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

var app = express(); 

app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');

app.get('/', function(req, res){
  res.render('layout', {
    title: 'Home'
  });
});

app.get('/newpage', function(req, res){
  res.render('anotherpage', {
    title: 'Home'
  });
});
app.listen(3000);

<强> page1.jade

doctype html
html
  head
    title= title
  body
    p hi there!
    button(onclick="move()") newPage
script.
  function move() {
    window.location.href = '/newpage'
  }

<强> anotherpage.jade

doctype html
html
  head
    title= title
  body
    p welcome to the other page!

享受,因为我花了15分钟写完所有这些和帖子。

卢卡