在{{this}}

时间:2017-02-18 05:53:47

标签: node.js handlebars.js templating

使用Handlebars 4.0.6和NodeJS 7.4.0,我使用{{this}}输出我的模板正在接收的数据,输出:

{ _id: 58a7de1c7275f8208438ae4a,
  author: 589a12b5a08e0c2f24ece4e8,
  dateCreated: 2017-02-18T05:39:40.650Z,
  section: 58a7d57c9ce34527bce7e041,
  slug: 'this-one-will-work',
  title: 'this one will work',
  color: '#d313ff',
  __v: 0,
  fields: 
  [ { fieldId: 58a3cff51da0ea5d00972804,
      fieldSlug: 'color',
      value: '#d313ff',
      _id: 58a7de1c7275f8208438ae4b } ] }

但是,在{{color}}正下方的模板中使用{{this.color}}{{this}}并不会输出任何内容。

我在Promise中使用mongoose获取数据,然后编译它,使用res.send()

这是我的编译功能:

    const Handlebars = require('handlebars');
    const fs = require('fs');
    const path = require('path');

    module.exports = (template, data) =>
      new Promise((resolve, reject) => {
        const templateWithFormat = template.endsWith('.hbs') ? template : `${template}.hbs`;
        const templatePath = path.resolve(__dirname, '..', '..', 'templates', templateWithFormat);

        fs.readFile(templatePath, 'utf-8', (err, file) => {
          if (err) reject(err);

          const compiled = Handlebars.compile(file);
          const html = compiled(data);

          resolve(html);
        });
      });

有人有什么想法吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

如果将mongoose模型对象传递给Handlebars,则可能会出现问题。 (因为mongoose包装一个对象并为属性添加getter / setter)

要解决此问题,请尝试使用{lean: true}运行您的查询,或在将其发送至把手之前致电modelObj.toObject()