嘿我正在尝试从子类创建表单:
models.Incident.report
看起来像那样:
public class Incidet{
public class Report{
}
}
我正在传递给scala模板
Form<Incident.Report> filled_form = form(Incident.Report.class).bindFromRequest();
return ok(filterForm.render());
在scala模板中,参数是:
@(filtrForm: Form[models.Incident.Report])
我收到错误:
Compilation error
type Report is not a member of object models.Incident
请帮忙
答案 0 :(得分:3)
在Scala中,使用#
运算符解决嵌套类。所以正确的语法是:
@(filtrForm: Form[models.Incident#Report])