我目前正在处理别人的代码库,我遇到过这个问题:
<!-- compiled CSS --><% styles.forEach( function ( file ) { %>
<link rel="stylesheet" type="text/css" href="<%=appRoot%>/<%= file %>" /><%});%>
<!-- compiled JavaScript --><% scripts.forEach( function ( file ) { %>
<script type="text/javascript" src="<%=appRoot%>/<%= file %>"></script><% }); %>
</head>
<body data-version="<%=version%>">
我确信它与grunt构建有关,但我需要了解在此实现中使用EJS的重要性。