为什么已经使用了include footer.ejs和include header.ejs,但是在主页没有显示???
<body> <% include header.ejs %> <%- body %> <% include footer.ejs %> </body>
难道是格式不正确吗?
8 回复
改成这样也不行啊 <body> <%- partial(‘header’)%> <%- body %> <%- partial(‘footer’) %> </body>