我的 bottom_index.ejs 看起来像这样:
<div>The bottom section</div>
在我的代码中,我声明了 ejs:
ejs = require('ejs');
然后编译函数:
var botom_index_ejs =
ejs.compile(fs.readFileSync(__dirname + "/../views/bottom_index.ejs", 'utf8'));
然后调用它来获取渲染的html:
botom_index_ejs()
它工作正常!
现在我想将我的模板更改为:
<div><%= bottom_text %></div>
并能够将参数(bottom_text)传递给bottom_index.ejs
我应该如何传递参数?
谢谢!