0

我需要使用 Play framework 2.0 在 twitter bootstrap popover 中以表格格式动态生成 HTML。但是下面使用 Play 框架模板的 HTML 代码给了我语法错误。有人可以指导我实现这一目标的正确语法是什么?

<a href="#" rel="popover"
data-original-title="Test dynamic table HTML inside popover" 
data-content="@(
"<table class='table table-bordered table-condensed'>" +
"<tbody>" +
    @for(item -> itemset) {
        "<tr><td>" + item.toString() + "</td></tr>" +
    }
"</tbody>" +
"</table>"
)"
</a>

提前致谢。

4

1 回答 1

0

what is the syntax error? Does your itemset take scala parameters at the top of the template function?

于 2013-07-23T09:55:14.157 回答