所以这可能是我完全误解了功能的情况,但我试图在 node.js 中使用部分,以便在我的各种模板上有一个可重用、可重新插入的页眉和页脚,类似于{% extends 'something.html' %}
django 或<? includes 'something.php ?>
php。据我了解,这就是部分的用途。
所以在我的 app.js 中使用这个配置来渲染模板:
var mustache = require('mustache');
var template = {
compile: function (source, options) {
if (typeof source == 'string') {
return function(options) {
options.locals = options.locals || {};
options.partials = options.partials || {};
if (options.body) // for express.js > v1.0
locals.body = options.body;
return mustache.to_html(
source, options.locals, options.partials);
};
}
else {
return source;
}
},
render: function (template, options) {
template = this.compile(template, options);
return template(options);
}
};
// Configuration
app.configure(function(){
app.register(".html", template);
app.set('views', __dirname + '/views');
app.set('view options', {layout: false});
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(express.static(__dirname + '/public'));
});
然后我有这条路线:
var header = require("../views/header.html");
module.exports = function(app){
app.all('/test', function(req, res){
var data = {
locals: {value: "some value"},
partials: {header: header}
}
res.render('test.html', data);
});
header.html 就是这样:
hello world
test.html 就是这样:
{{>header}}
{{ value }}
我希望这会呈现:
hello world
some value
但是当我运行node app.js
指向hello world
我的 header.html 作为问题时,我得到了一个意外的令牌错误。
我在配置它以使其正常工作时缺少什么?