3

所以这可能是我完全误解了功能的情况,但我试图在 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 作为问题时,我得到了一个意外的令牌错误。

我在配置它以使其正常工作时缺少什么?

4

2 回答 2

0

对于部分以及如何使它们工作,我建议看一下consolidate.js项目。将多个模板引擎与 express 3.x 集成是一种努力

于 2012-07-08T22:19:47.827 回答
0

这个帖子很老了,但也许像我这样留着小胡子的初学者会像我一样在这里遇到同样的问题。

就我而言,问题是我在模板中省略了“>”。

  • 快递:“^4.17.1”
  • 小胡子快递:“^1.3.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>

我希望这对其他人有帮助

于 2021-02-05T06:39:13.593 回答