使用 Node、express 和 EJS 可以实现这一点吗? -6ren">
gpt4 book ai didi

node.js - EJS 检测 include 的调用位置

转载 作者:太空宇宙 更新时间:2023-11-04 02:15:13 25 4
gpt4 key购买 nike

我正在使用 EJS 来维护整个网站的标准化页眉和页脚。

<% include includes/footer %>

我希望页脚包含显示它的每个页面的文件特定 javascript:

<script src="public/js/<% NAME_OF_FILE_THAT_CALLS_FOOTER %>.js"></script>

使用 Node、express 和 EJS 可以实现这一点吗?

最佳答案

我建议你在每个页面导入js文件,而不是在页脚。

页面.ejs

<% include header %>
//body
<script src="/bootstrap/js/bootstrap.min.js"></script>
<% include footer %>

页脚.js

  // something more you want
</body>
</html>

关于node.js - EJS 检测 include 的调用位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36072819/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com