这是我的代码:
public static Result continents()
{
List<Continent> cont = Continent.find.all();
return ok(views.html.index.render(cont));
}
我收到错误:"render can not be applied in this (java util.list. <models)"
我做错了什么?
答案 0 :(得分:1)
删除views.html.
。某些IDE尝试完成此路径或显示错误。我的IDE IntelliJ IDEA 13显示同样的问题,但它没有错误。