我有咖啡文件,我正在关注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
当我点击本地服务器上的网页时,它确实显示,但标题未显示为登录。我错过了什么?
答案 0 :(得分:0)
不确定你提到的一半,但是看CS:你的功能没有正确缩进。它不应该是这样的:
routes = (app) ->
app.get '/login', (req, res) ->
res.render "#{__dirname}/views/login",
title: 'Login'
stylesheet: 'Login'
module.exports = routes