我正在尝试开发一个模板,该模板的内容位于页面的中间(链接 main.scala.html)。
这是我的代码
主页面的模板(名称:test.scala.html)
@(title: String)(content: Html)
<p> Some HTML Stuff </p>
@content
第二页(名称:test2.scala.html)
@(test:String)
@test("test2"){
<p> Hello World </p>
}
控制器
public class Admin extends Controller {
public static Result test(){
return ok(test.render("test"));
}
public static Result test2(){
return ok(test2.render("test2"));
}
}
这种方式是行不通的。可能有人可以帮助我