我需要使用 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>
提前致谢。