关于 NodeJS 的 EJS 模板引擎的问题
我正在使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论