15

我的玉模板文件中有一个视图逻辑。如何将模型传递给玉并获取 html 以通过电子邮件进一步发送?

4

4 回答 4

26

您可以尝试以下方法:

var jade = require('jade'),
    fs = require('fs');

fs.readFile('template.jade', 'utf8', function (err, data) {
    if (err) throw err;
    console.log(data);
    var fn = jade.compile(data);
    var html = fn({name:'Oleg'});
    console.log(html);
});

template.jade模板的路径在哪里。它看起来像这样:

!!!
html
  head
    title= 'Hello world'
  body
    p Hello #{name}!

因此,您将模型作为 fn() 函数的输入传递,它的输出将是 html。

<!DOCTYPE html><html><head><title>Hello world</title></head><body><p>Hello Oleg!</p></body></html>
于 2012-11-13T14:54:30.147 回答
13

您也可以从渲染回调中捕获字符串(快速示例)

exports.test1 = function(req, res){
  res.render('test1', { title: 'test1' }, function(err, body) {
    console.log(body);
  });

  res.send('wooo');
};

test1.jade

div
  = title
p hello world!
于 2013-05-03T12:35:17.080 回答
6

fs.readFile()不再需要打开模板。Jade API 包括compileFile()直接从文件编译的方法。

var jade = require("jade");

var locals = {name: "Linus"},
    render = jade.compileFile('template.jade'),
    html   = render(locals);

Jade API 还包括renderFile()直接从给定文件返回 html 字符串的方法,使其更加简单。

var jade = require("jade");

var locals = {name: "Linus"},
    html   = jade.renderFile('template.jade', locals);
于 2015-12-01T17:11:46.153 回答
1

答案都适用于加载玉模板并使用本地将其编译为 HTML。但是,如果您发送 HTML 电子邮件,则需要注意大多数客户端会删除所有 CSS 类。使用Juice(或类似的东西)内联应用所有 CSS 类。

于 2014-08-27T14:23:42.917 回答