您好我正在尝试使用Handlebars Template引擎设置用户名的值 这是我的模板
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Template</title>
</head>
<body>
<p>Hi {{userName}} </p>
</body>
</html>
这是我的代码
template = handlebars.compile("HandleBarsBase");
Map<String, String> modelWithUser = new HashMap<String,String>();
modelWithUser.put("userName", "Dan");
System.out.println(template.apply(modelWithUser));
但我得到一个空值而不是userName 如何使用java设置userName的值?