Play!2.1ページングの書き方
2366 ワード
Playでページングを実現する方法がどれくらいあるか分かりません.
プレイが提供する1つはこのようなものです.
まず、ページングクラスを実装します.
テンプレートファイルのページング:
linkメソッド定義:
ここでエラーを犯しました.メソッド定義の最後の行はroutesファイルではなくパッケージパスに書かれ、生成されたhrefは
プレイが提供する1つはこのようなものです.
まず、ページングクラスを実装します.
public static class Page {
private final int pageSize;
private final long totalRowCount;
private final int pageIndex;
private final List<ServerModel> list;
public Page(List<ServerModel> data, long total, int page, int pageSize) {
this.list = data;
this.totalRowCount = total;
this.pageIndex = page;
this.pageSize = pageSize;
}
public long getTotalRowCount() {
return totalRowCount;
}
public int getPageIndex() {
return pageIndex;
}
public List<ServerModel> getList() {
return list;
}
public boolean hasPrev() {
return pageIndex > 1;
}
public boolean hasNext() {
return (totalRowCount / pageSize) >= pageIndex;
}
}
テンプレートファイルのページング:
<ul>
@if(currentPage.hasPrev) {
<li class="prev">
<a href="@link(currentPage.getPageIndex - 1)">← </a>
</li>
} else {
<li class="prev disabled">
<a>← </a>
</li>
}
@if(currentPage.hasNext) {
<li class="next">
<a href="@link(currentPage.getPageIndex + 1)"> →</a>
</li>
} else {
<li class="next disabled">
<a> →</a>
</li>
}
</ul>
linkメソッド定義:
@link(newPage:Int) = @{
var sortBy = currentSortBy
var order = currentOrder
routes.Action.list(newPage)
}
ここでエラーを犯しました.メソッド定義の最後の行はroutesファイルではなくパッケージパスに書かれ、生成されたhrefは
href="SimpleResult(200, Map(Content-Type -> text/html; charset=utf-8))"