cakephp弹性搜索分页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cakephp弹性搜索分页相关的知识,希望对你有一定的参考价值。
How do you use the elastic-search plugin with cake's native pagination?
)->toArray(); foreach ($products as $product) { $ids[] = $product['id']; } $this->paginate = [ 'limit' => 10, ), ]; $products = $this->paginate('Products'); $this->set('products', $products');
以上是关于cakephp弹性搜索分页的主要内容,如果未能解决你的问题,请参考以下文章
如何删除或更改postgresql上的cakephp分页计数查询?