我正在尝试我在其他问题中看到的但没有运气:
我试图用
app.register('.js.html', {
compiler: function(str,options){...}
});
但是注册在 express js 中是未定义的。
我让 Bliss 以这种方式工作
exports.index = function(req, res){
//res.render('index', {});
res.send(bliss.render(__dirname+"/index",{}));
};
但我想改用 res.render('index',output) 。