0

在我的 index 方法中,我呈现了一个基本的登录表单,我将其发送到我的index.scala.html

/**
 * Main entry method for the application
 */
public static Result index() {
     return ok(views.html.index.render(form(Application.Login.class)));
}

在文件index.scala.html 中:我定义了表单参数:

@(form: Form[Application.Login])

@main(title = "myTitle") {
    <h2>Testing app</h2>
}

所以,在这个文件中,我通过@main(...)调用父模板。但是如何将表单传递给我的父模板?我尝试了以下方法:

@(form: Form[Application.Login])

@main(title = "myTitle", form) {
    <h2>Testing app</h2>
}

在我的main.scala.html中有以下内容:

@(title: String, form: Form[Application.Login])(content: Html)

但这不起作用,我收到以下错误消息:

not enough arguments for method apply: (title: java.lang.String, form: play.data.Form[controllers.Application.Login])(content: play.api.templates.Html)play.api.templates.Html in object main. Unspecified value parameter form.

4

1 回答 1

2

正如朱利安所说,这是有效的:

@main(title = "myTitle", form = form) { … } or just @main("myTitle", form) { … } 
于 2012-05-23T06:41:12.897 回答