我开始玩游戏框架并开始使用框架。
我创建了一个看起来像的视图:
@(名称:字符串)
< B个@name
我有一个看起来像
的控制器import play.api._
import play.api.mvc._
object Application extends Controller {
def index = Action {
Ok("lol")
}
def recent = Action{
Ok(views.html.Application.recent.render("Hello"))
}
}
当我编译它完全正常工作。 然而,eclipse抱怨我使用“渲染”:
not enough arguments for method render: (title: String, content: play.twirl.api.Html)play.twirl.api.HtmlFormat.Appendable. Unspecified value parameter content.
如何解决此问题?
答案 0 :(得分:1)
尝试在激活器命令提示符下运行命令“eclipse”。