1

検索エンジンを作成するアプリケーションに 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);
    }
4

1 に答える 1

0

Play' s CRUD module is actually intended to generate an admin console. What you store in your database can directly be editted, new data can be added and your data can be deleted by the use of the pages, generated by CRUD module.

CRUD モジュールによって生成されたページをカスタマイズする場合は、play/modules/crud フォルダー内のページを変更する必要があります。

ここに画像の説明を入力

于 2012-05-23T09:13:46.310 に答える