关于 NodeJS 的 EJS 模板引擎的问题

发布于 2024-11-17 21:01:23 字数 350 浏览 1 评论 0原文

我正在使用nodejs和EJS模板引擎...

如果我这样做:

ejs.render(str, { cache: true, filename: 'index', locals: { test: "Text Text Text Text Text" }});

其中str是要渲染的代码...它将缓存代码,好吧,完美!

问题是。如果 str 已被缓存,为什么我必须为每个请求传递 str ? (我使用“fs”模块读取它)......此刻我读取文件并将其传递给 .render()。

如果文件已被缓存,为什么我必须读取该文件?我可以优化它吗?

I'm using nodejs and EJS template engine...

if i do:

ejs.render(str, { cache: true, filename: 'index', locals: { test: "Text Text Text Text Text" }});

where str is the code to render...It will cache the code, ok, Perfect!

the question is. why do i have to pass the str for every request if it has been cached? (i read it using 'fs' module).... at the moment I read the file and pass it to .render().

Why do i have to read the file if it has been cached? can i optimize it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文