我正在尝试从doc运行 hello world 应用程序。
我收到以下错误:
render(java.lang.String) in views.html.index cannot be applied to (play.data.Form<controllers.Application.Hello>)
指向以下代码块:
/**
* Home page
*/
public static Result index() {
return ok(index.render(form(Hello.class)));
}
Eclipse 也无法解析索引对象上的 .render 方法。
the method render(String) in the type index is not applicable for the arguments (Form<Application.Hello>)
我定义了以下导入:
package controllers;
import play.*;
import play.mvc.*;
import play.data.*;
import play.data.validation.Constraints.*;
import java.util.*;
import views.html.*;
hello.scala.html 和 index.scala.html 也可以在文件夹 app/views/ 中找到
知道我做错了什么吗?