检索远程数据。 (但那不是问题)
型号:
Class myModel {
public function list_posts($cat){
$posts= json_decode($this->http->get($this->base_url."/myPath/".$cat), true);
return $posts;
}
}
控制器:
Class myController {
public function index() {
$cat = 'mycat'
$posts= $this->myModel->list_posts($cat);
$this->set('works',$obras);
}
}
如何对已检索的数据使用$this->paginate()
方法?