我一直在自学JMustache,并且尝试将地图列表发送到子模板。我有以下Java测试:
@Test
public void testWithNestedPartial() {
final WeakHashMap<String, Object> parameters = new WeakHashMap<>();
parameters.put("start", "hello");
final List<Map<String, String>> subParameterList = new ArrayList<>();
WeakHashMap<String, String> subParameters = new WeakHashMap<>();
subParameters.put("greek", "alpha");
subParameters.put("numeric", "1");
subParameterList.add(subParameters);
subParameters = new WeakHashMap<>();
subParameters.put("greek", "beta");
subParameters.put("numeric", "2");
subParameterList.add(subParameters);
parameters.put("sub", subParameters);
final Compiler subTemplateLoadingCompiler = Mustache.compiler()
.withLoader(templateName -> Files.newBufferedReader(Paths.get(TEST_TEMPLATE_PATH + templateName + ".htmm")));
final Template template = subTemplateLoadingCompiler.compile("{{start}}\r\n{{> complex-partial}}");
final String result = template.execute(parameters);
Assert.assertEquals(result, "hello\r\n• alpha\r\n• 1\r\n• beta\r\n• 2\r\n");
}
...使用complex-partial.htmm:
{{# sub.this}}
• {{greek}}
• {{numeric}}
{{/ sub.this}}
...具有以下结果:
java.lang.AssertionError: expected [hello
• alpha
• 1
• beta
• 2
] but found [hello
• beta
• 2
]
如果我将其切换并最后放置“ alpha”和1,则显示“ alpha”和1。
我知道我没有正确编写子模板,并且我尝试了不同的方法在其中设置参数,但是解决方案使我无所适从。如何编写此部分内容以通过此测试?
最佳答案
OP出现错字。
他打算用
parameters.put("sub", subParameterList)
代替
parameters.put("sub", subParameters)
关于java - 如何在JMustache的子模板中处理 map 列表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46454355/