3

我正在使用 Express.js 2.5.8。为了减少重复,我希望使用 dynamicHelper 将常用对象传递给视图,而无需在每个路由中显式呈现它们。

我已经查看了在前往视图的途中拦截当地人的方法的来源,但没有取得多大成功。我可以通过检查 app.dynamicViewHelpers 对象来确认它们的存在。但是,我想知道是否有一种不太依赖于实现的方式来实现这一点。

一个理想的解决方案是不知道如何将值和对象传递给视图。无论它们来自 viewHelper、中间件还是路由本身,测试都应该不加修改地通过。无论如何,这就是理想。我会接受其他方法。

我要测试的一个松散示例:

app.dynamicHelpers({
  example : function(req, res){
    return "Example Value";
  }
});

app.get('/example', function(req, res){
  res.render('example-view', {
    sample : "Sample Value"
  });
});

// test that example === "Example Value" in the view
// test that sample === "Sample Value" in the view
4

1 回答 1

0

这是一个非常好的问题。我想最好的方法是利用 Express 的视图系统。如果您使用的是 Express 2,它可能如下所示:

var express = require('express');
var app = express.createServer();

express.view.compile = function (view, cache, cid, options) {
  // This is where you get the options as passed to the view
  console.log(options);

  return {
    fn: function () {}
  };
};

app.locals({
  passed_via_locals: 'value'
});

app.get('/', function (req, res, next) {
  res.render('index', {
    passed_in_render: 'value',
    layout: false
  });
});

app.listen('./socket');

var http = require('http');

http.get({socketPath: './socket'});

在 Express 3 中,这变得容易多了:

var express = require('express');
var app = new express();

function View() {
  this.path = true;
};
View.prototype.render = function(options, cb) {
  // This is where you get the options as passed to the view
  console.log(options);
};
app.set('view', View);

app.locals({
  passed_via_locals: 'value'
});

app.render('index', {
  passed_in_render: 'value'
});
于 2013-08-01T09:04:48.900 回答