表达,coffeescript,标题不起作用

时间:2013-06-18 17:34:16

标签: express coffeescript

我有咖啡文件,我正在关注peepcode截屏069。

 routes = (app) ->
 app.get '/login', (req, res) ->
 res.render "#{__dirname}/views/login",
   title: 'Login'
   stylesheet: 'Login'

 module.exports = routes

这是我的layout.jade文件

  doctype 5
  html
   head
      title= title
      link(rel='stylesheet', href='/stylesheets/style.css')
    body
       block content

当我点击本地服务器上的网页时,它确实显示,但标题未显示为登录。我错过了什么?

1 个答案:

答案 0 :(得分:0)

不确定你提到的一半,但是看CS:你的功能没有正确缩进。它不应该是这样的:

routes = (app) ->
  app.get '/login', (req, res) ->
    res.render "#{__dirname}/views/login",
      title: 'Login'
      stylesheet: 'Login'

module.exports = routes