分页数据 //在模型中计算出总数量 $count=$this->find()->where()->count(); //用总条数和设定的每页个数实例化一个yiidataPagination类 $page=new Pagination([totalCount' => $count,'defaultPageSize' => 2,]); //使用分页类的属性搜索想要的数据,并返回数据 $res=$this->find()->where()->offset($page->offset)->limit($page->limit)->all(); return [$res,$page]; //使用控制器渲染页面 $data=$model->getData(); return $this->render('index',$data); //在视图页面中使用数据。 foreach($res as key)... yiiwidgetsLinkPager::widget([pagination=$page,prevPageLabel='上一页'])。