我在Play Framework中使用Scala编写了一些代码,但是我收到了错误。它工作正常但突然间我出错了。
def index = Action { implicit request =>
Ok(views.html.Postpage.render())
}
我收到以下错误:
Cannot resolve reference Action with such signature
Type mismatch expected(Request[Anycontent]=>resultactual:request[AnyContent]=>Any)
Type mismatch expected(BodyParser[Anycontent]=>resultactual:request[AnyContent]=>Any)
cannot resolve symbol Ok
答案 0 :(得分:0)
问题是您在render
对象中明确调用Ok
方法:
def index = Action { implicit request =>
Ok(views.html.Postpage.render())
}
删除.render()
并重新开始。
确保app/views/Postpage.scala.html
存在。