我有一个帮助文件 utils.scala.html,如下所示:
@renderTableRow(columnTag: String, columns: Seq[String]) = {
<tr>
@for(column <- columns) {
<@columnTag>
@column
</@columnTag>
}
</tr>
}
我想从我的其余视图文件中调用这个帮助函数来创建表头。
@import views.html.mycommon.utils
@renderQuotesTable() = {
<table class="table table-bordered table-striped">
<thead>
@utils.renderTableRow("th", Seq("Name", "Date of Birth", "Age"))
</thead>
<tbody>
</tbody>
}
但是,我得到以下错误
值 renderTableRow 不是对象 views.html.mycommon.utils 的成员。
我在这里想念什么?