gpt4 book ai didi

node.js - 如何在 ejs/express 中的全局变量中使用函数?

转载 作者:太空宇宙 更新时间:2023-11-03 22:47:26 25 4
gpt4 key购买 nike

var app = express();
app.locals.current_time = utils.current_time();

我可以为该变量的模板中的每个请求更改变量 current_time 吗?本例中的 app.locals.current_time 是常量,但我想使用函数。

最佳答案

app.locals.current_time = function () {
return utils.current_time();
};

然后在 ejs 模板上像这样使用它:

<%= current_time() %>

关于node.js - 如何在 ejs/express 中的全局变量中使用函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24336348/

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