7

我不想使用 Express 默认自带的 Jade 模板引擎。我尝试按照本指南进行操作,但失败了:

http://blog.luksidadi.com/expressjs-underscore-template/

有问题的错误是:

node.js:201
        throw e; // process.nextTick error, or 'error' event on first tick
              ^
Error: callback function required
    at Function.engine (/home/me/blog/node_modules/express/lib/application.js:173:38)
    at Object.<anonymous> (/home/tk/blog/app.js:28:5)
    at Module._compile (module.js:432:26)
    at Object..js (module.js:450:10)
    at Module.load (module.js:351:31)
    at Function._load (module.js:310:12)
    at Array.0 (module.js:470:10)
    at EventEmitter._tickCallback (node.js:192:40)

当我尝试使用以下命令启动服务器时,我得到了这个:

node app.js

如何解决这个问题?

应用程序.js:

/**
 * Module dependencies.
 */

var express = require('express')
  , routes = require('./routes')
  , user = require('./routes/user')
  , http = require('http')
  , path = require('path');

var app = express();

app.configure(function(){
  app.set('port', process.env.PORT || 3000);
  app.set('views', __dirname + '/views');
  //app.set('view engine', 'jade');
  app.use(express.favicon());
  app.use(express.logger('dev'));
  app.use(express.bodyParser());
  app.use(express.methodOverride());
  app.use(app.router);
  app.use(express.static(path.join(__dirname, 'public')));
});

// Add these lines to register underscore template
var _ = require('underscore');
app.engine('.html', {
  compile: function(str, options){
    var compiled = require('underscore').template(str);
    return function(locals) {
        return compiled(locals);
    };
  }
});

app.configure('development', function(){
  app.use(express.errorHandler());
});

app.get('/', routes.index);
app.get('/users', user.list);

http.createServer(app).listen(app.get('port'), function(){
  console.log("Express server listening on port " + app.get('port'));
});

路线/index.js:

/*
 * GET home page.
 */

exports.index = function(req, res){
  res.render('index.html', { title: 'Express' });
};

布局.html:

< html >
  < head >
    < title ><%=title%>< /title >
  < /head >
  < body >
  <%=body%>
  < /body >
< /html >

索引.html:

Hello world
4

3 回答 3

5

使用consolidate.js将 Underscore 的模板函数转换为接受 Express 在 3.x 中要求的格式(path[, locals], callback)

于 2013-02-16T04:36:56.223 回答
2
var cons = require('consolidate');

// 查看引擎设置

app.engine('html',cons.underscore);
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'html');

在终端

npm install consolidate --save 
于 2014-09-17T14:11:00.427 回答
2

首先,您app.engine使用扩展名和对象进行调用,而它需要一个函数作为第二个参数(请参阅源文档)。

该函数有 3 个参数:文件路径、选项和回调。

正如文档中所写,建议将其consolidate.js用作帮助程序来使用不表达友好的模板引擎。

consolidate.js这里引用了它的README并适应使用下划线的简单集成:

// assign the swig engine to .html files
app.engine('html', cons.underscore);

// set .html as the default extension 
app.set('view engine', 'html');

另外,我不知道如何在 Express 下使用下划线处理您的 layout.html,我认为这不可能开箱即用。

于 2013-02-20T15:45:20.583 回答