我正在为创建搜索引擎的应用程序使用 CRUD 模块。我想自定义模块,以便出现的搜索结果会将我重定向到另一个页面。我尝试了文档http://www.playframework.org/documentation/1.1/crud但没有太大帮助。我正在关注这个视频来创建我的搜索引擎http://geeks.aretotally.in/play-elastic-search-module-new-0-0-5-release-with-screencast
我的路线有问题,所以我想知道当我点击搜索结果将我重定向到另一个页面时我该怎么做
我已将此行添加到路线
GET /Tutorials/:id Tutorials.tutorialPage(tutId: Long)
我已经在控制器中有这个方法:
public static void tutorialPage(long tutId) {
Tutorial t = Tutorial.findById(tutId);
render(t);
}