如何使用j2html每种方法

时间:2017-12-11 10:40:55

标签: java j2html

如何使用j2htmls每种方法添加集合的元素?

他们在https://j2html.com/examples.html

上举了一个例子
// each() lets you iterate through a collection and returns the generated HTML
// as a DomContent object, meaning you can add siblings, which is not possible
// using the stream api in the previous example
body(
    div(attrs("#employees"),
        p("Some sibling element"),
        each(employees, employee ->
            div(attrs(".employee"),
                h2(employee.getName()),
                img().withSrc(employee.getImgPath()),
                p(employee.getTitle())
            )
        )
    )
)

但他们没有定义员工员工实际上是什么。

在我的情况下,我想在div中添加一系列Counter元素(每个都有标签),但我看不到怎么做,所以现在我只为每个单独的计数器使用 j2html 然后用硬编码标签包装它。

sb.append("<div>\n");
for(Map.Entry<Integer, Counter> next:fsc.getCounters().entrySet())
{
    sb.append(label(next.getValue().getText()).attr("for","pb"+next.getKey().intValue()));
    sb.append(render(progress()
            .withId("pb"+next.getKey().intValue())
            .attr("value", next.getValue().getCounter().intValue())
            .attr("max", "100")));
    sb.append(rendern(br()));
}
sb.append("</div>\n");

1 个答案:

答案 0 :(得分:1)

好的,我在示例中没有抓到的是 employees 是集合变量而 employee 是任意的,它只是分配给循环的局部变量可以是你想要的任何东西。

现在让它发挥作用。

sb.append(rendern(table(each(fsc.getCounters().entrySet(), next ->
        tr(
                td(
                        label(next.getValue().getText())
                                .attr(FOR,PB_PREFIX+next.getKey().intValue())),
                td(
                        iffElse(next.getValue().getBar().isIndeterminate(),
                                progress()
                                        .withId(PB_PREFIX+next.getKey().intValue()),
                                progress()
                                        .withId(PB_PREFIX+next.getKey().intValue())
                                        .attr(VALUE, next.getValue().getCounter().intValue())
                                        .attr(MAX, next.getValue().getBar().getMaximum())
                        )
                )
        )
    )
)));