0

我正在使用车把模板在发送之前动态准备电子邮件内容。

只传递一个值很简单。例如:

What's up {{this}}模板与template.apply(firstName).

尝试将模板更改为What's up {{this}}, {{this}}并尝试用template.apply(lastName);和填写template.apply(firstName);

但它不起作用。

4

2 回答 2

1

pass a map as parameter.

template.hbs

What's up {{firstName}}, {{lastName}}

controll.java

template.apply(new HashMap<String, Object>() {
    {
        put("firstName", "Himanshu");
        put("lastName", "Yadav");
    }
});
于 2016-03-16T18:16:25.220 回答
-1

您必须通过this名称引用您在对象上设置的变量。

What's up {{firstName}}, {{lastName}}
于 2016-02-02T18:55:21.350 回答