我不想在项目的每个视图上设置我的资产(CSS/JS、菜单等)。有没有办法设置一个基本模板,然后调用视图来填充它的主体?
示例:
<!-- my base template -->
<html>
<head>
<!-- my assets here -->
</head>
<body>
<%= view.render() %> <!-- example of where I would render the views -->
</body>
</html>
我怎么能那样做?
我在这里看到了这一点,但还没有看到它是如何工作的。另一种选择是使用EJS部分。