10

我的 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

我应该如何传递参数?

谢谢!

4

1 回答 1

23

参数作为 JS 普通对象传递给 EJS 模板。对于您的示例,它应该是:

botom_index_ejs({ bottom_text : 'The bottom section' });

更新:

测试.js

var fs = require('fs');
var ejs = require('ejs');
var compiled = ejs.compile(fs.readFileSync(__dirname + '/test.ejs', 'utf8'));
var html = compiled({ title : 'EJS', text : 'Hello, World!' });
console.log(html);

测试.ejs

<html>
    <head>
        <title><%= title %></title>
    </head>
    <body>
        <p><%= text %></p>
    </body>
</html>
于 2013-03-04T14:48:14.233 回答