此书电子版p55处,讲到模板语言ejs,提供了代码清单:
<% include head %> 。。。 <% include foot %>
编译时说ejs有错。
解决办法:
在使用include命令导入其他ejs文件时,需如下 操作:
<% include('head')%> 。。。 <% include('foot') %>
即用圆括号及引号把要导入的ejs文件名括起来。
再次编译,成功!