所以这可能是我完全误解功能的情况,但我试图在node.js中使用partials,以便我在django中的{% extends 'something.html' %}
类似于我的各种模板上有一个可重用的,可重新插入的页眉和页脚或者在PHP中<? includes 'something.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
但是当我在我的header.html中指向node app.js
hello world
作为问题时,我收到了意外的令牌错误。
我在配置它时遇到了什么,以便它可以工作?
答案 0 :(得分:0)
对于部分内容以及如何使其工作,我建议您查看consolidate.js项目。将多个模板引擎与快速3.x
集成是一种非常有效的方法答案 1 :(得分:0)
这个帖子很老了,但也许像我这样留着小胡子的初学者最终会像我一样提出同样的问题。
就我而言,问题是我省略了模板中的“>”..
在 myRouter.ts 中
router.all('/', (req: Request, res: Response, next: NextFunction) => {
res.render('index', {
pageTitle: 'Welcome',
partial: res.render('partial',{...})
});
});
在 template.mustache 中
<html>
<head>
<title>{{pageTitle}}</title>
</head>
<body>
{{>partial}}
</body>
</html>
我希望这对其他人有帮助