我是Play Framework的新手。
我在此之前使用的是play-2.0.4版本,现在,我将迁移到play-2.1.3。
干净并运行后,我收到以下错误:
找不到:输入页面
@( user: models.Or_User,
popsList: List[models.masterdata.Pops],
currentPage: Page[models.masterdata.Countries],
popId: Integer
)
在国家模型中,我有Page方法:
public static Page<Countries> page (int page, int pageSize) {
return find.orderBy("id asc").findPagingList(pageSize).getPage(page);
}
在控制器中,
public static Result manageCountries(Integer page) {
Page<Countries> countryPage = Countries.page(page, 10);
return ok(managecountries.render(Or_User.findByEmail(request().username()), countryPage));
}
在视图中,
@( user: models.Or_User,
popsList: List[models.masterdata.Pops],
currentPage: Page[models.masterdata.Countries],
popId: Integer
)
@main(user){
}
请帮我解决这个错误。