CakePHPのページ送りのURLを修正する方法
CakePHPでページ送りを実装するのに、Paginate ComponentとPaginate Helperを使いますが、ページ送りのURLがこのように「/sort:User.id/direction:ASC/」が付いてきてしまうので、それを削除する方法を紹介します。
http://example.com/page:2/sort:User.id/direction:ASC/
-
controllerで
$this->paginate('User');
したあとにunset($this->request->params['paging']['User']['options']['order']);
をする -
viewで
$this->Paginate->numbers();
の前にunset($this->request->params['paging']['User']['options']['order']);
をする
どちらの方がいいかわかりませんが、これでページ送りのURLがhttp://example.com/page:2/になります。