我目前正在学习 NodeJs,而 Express 正在尝试将教程应用程序从 Express 2.5.9 转换为 3.0。下面的代码现在抛出错误“500 错误:无法查找视图“视图/登录”。现在 3.0 的渲染方式是什么?
apps
authentication
views
login.jade
routes.coffee
...
server.js
在 routes.coffee
routes = (app) ->
app.get '/login', (req, res) ->
res.render "views/login",
title: 'Login'
stylesheet: 'login'
module.exports = routes