我从种子中尝试了这个简单的更改并创建了相应的 .html 文件(例如 index.html)。
//app.set('view engine', 'jade');
app.set('view engine', 'html');
这个文件保持不变:
exports.index = function(req, res){
res.render('index');
};
但是在跑步时我得到
500 错误:找不到模块“html”
我唯一的选择是使用“ejs”吗?我的意图是结合使用纯 HTML 和 AngularJS。