1

如何将我自己的自定义函数添加到 ejs?

<%- custom_function('test') %>

谢谢!

4

1 回答 1

2

您可以将自己的过滤器添加到 ejs。

ejs.filters.custom_function = function(str) {
    return str + ' custom string';
};

在模板中,您可以像这样访问您的过滤器:

<%=: 'somestring' | custom_function %>

您可以使用冒号将其他参数传递给您的函数。

ejs.filters.custom_function = function(str, postfix) {
    return str + postfix;
};

在您的模板中:

<%=: 'somestring' | custom_function:' custom postfix' %>
于 2012-03-05T23:15:01.643 回答