自定义CRUD模块

时间:2012-05-22 21:53:24

标签: playframework crud

我正在为我的应用程序使用CRUD模块来创建搜索引擎。我想自定义模块,以便出现的搜索结果会将我重定向到另一个页面。我尝试了文档http://www.playframework.org/documentation/1.1/crud,但它没有多大帮助。 我正在关注此视频以创建我的搜索引擎http://geeks.aretotally.in/play-elastic-search-module-new-0-0-5-release-with-screencast  ![this is a screen shot of my search so far when i clock on the search results in this case "tutorial [2]" i get this page![][1]

我的路线有问题所以我想知道当我点击搜索结果将我重定向到另一个页面时我该怎么办

我已将此行添加到路线

GET / Tutorials /:id Tutorials.tutorialPage(tutId:Long)

我已经在控制器中使用了这个方法:

public static void tutorialPage(long tutId) {
        Tutorial t = Tutorial.findById(tutId);
        render(t);
    }

1 个答案:

答案 0 :(得分:0)

Play的CRUD模块实际上是用来生成管理控制台。您可以直接编辑存储在数据库中的内容,添加新数据,并使用CRUD模块生成的页面删除数据。

如果要自定义由CRUD模块生成的页面,则需要更改play / modules / crud文件夹中的页面

enter image description here