PHP Cakephp:与当前和使用Containable分页不同的模型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Cakephp:与当前和使用Containable分页不同的模型相关的知识,希望对你有一定的参考价值。

// Import model inside another
App::Import('Model', 'Example');
$this->Example = new Example;

// add options to paginate the model
$this->paginate['Example'] = array( 'limit' => 5, 'page' => 1 , 'order' => 'Example.name' );
$this->set( 'items', $this->paginate('Example') );




// using containable
$this->Issue->IssuesSerialNumber->Behaviors->attach('Containable');
$this->paginate['IssuesSerialNumber'] = array('limit' => 15, 'page' => 1, 'contain' => array('Issue', 'SerialNumber', 'SerialNumber.Product'), 'order' => 'IssuesSerialNumber.serial_number_id', 'conditions' => array('IssuesSerialNumber.issue_id' => $this->Session->read('Issue.id') ) );

$items = $this->paginate( 'IssuesSerialNumber' );

以上是关于PHP Cakephp:与当前和使用Containable分页不同的模型的主要内容,如果未能解决你的问题,请参考以下文章

PHP 获取cakephp中的当前URL

PHP Cakephp - 获取当前的基本网址(包含域名)

CakePHP 3.x 从实体获取相关数据

将 Paypal PHP sdk 与 Cakephp 3.x 集成

解密 CakePHP 1.2 数据

CakePHP 3“包含”不检索“属于”