我正在使用车把模板在发送之前动态准备电子邮件内容。
只传递一个值很简单。例如:
What's up {{this}}
模板与template.apply(firstName)
.
尝试将模板更改为What's up {{this}}, {{this}}
并尝试用template.apply(lastName);
和填写template.apply(firstName);
。
但它不起作用。
我正在使用车把模板在发送之前动态准备电子邮件内容。
只传递一个值很简单。例如:
What's up {{this}}
模板与template.apply(firstName)
.
尝试将模板更改为What's up {{this}}, {{this}}
并尝试用template.apply(lastName);
和填写template.apply(firstName);
。
但它不起作用。
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");
}
});
您必须通过this
名称引用您在对象上设置的变量。
What's up {{firstName}}, {{lastName}}