Cakephp:分页不同于当前的模型并使用Containable
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cakephp:分页不同于当前的模型并使用Containable相关的知识,希望对你有一定的参考价值。
// Import model inside another App::Import('Model', 'Example'); $this->Example = new Example; // add options to paginate the model $this->set( 'items', $this->paginate('Example') ); // using containable $this->Issue->IssuesSerialNumber->Behaviors->attach('Containable'); $items = $this->paginate( 'IssuesSerialNumber' );
以上是关于Cakephp:分页不同于当前的模型并使用Containable的主要内容,如果未能解决你的问题,请参考以下文章
PHP Cakephp:与当前和使用Containable分页不同的模型