5

我在 ejs 中使用 express(node.js 的 web 框架)。现在我想创建我自己的过滤器,如ejs github 页面所述:

To add a filter simply add a method to the .filters object:

ejs.filters.last = function(obj) {
  return obj[obj.length - 1];
};

问题:我如何访问那个 ejs 对象?我在 app.js 中(天真地)尝试过:

ejs.filters.myfilter = function (obj) {
  ....
}

这给了我错误:

ReferenceError: ejs is not defined
4

1 回答 1

10

您需要在您的应用程序中要求 ejs 并在其上设置自定义过滤器,这将对您的 Express 应用程序可见。还要注意如何在视图中使用 ejs 过滤器<%=: data_to_be_filtered | your_filter %>

示例应用:

应用程序.js

var app, express = require('express'), ejs = require('ejs');

ejs.filters.my_custom_filter = function(ary) {
  return ary[ary.length - 1];
};

app = express.createServer();

app.configure(function() {
  app.set('view options', { layout: false });
  app.set('view engine', 'ejs');
});

app.get('/', function(req, res) {
  res.render('index', { data: [1, 2, 3, 4, 5] });
});

app.listen(8080);
console.log('Server started on port 8080');

index.ejs(位于/views)

<%=: data | my_custom_filter %>

直接从github下载代码:http: //github.com/alessioalex/ejs_filters

更多信息结帐:https ://github.com/visionmedia/ejs

于 2012-01-09T19:47:24.590 回答