Henry- 2016-05-20 19:47:28 2729次浏览 0条回复 0 0 0

RT:我在接口中使用了ActiveDataProvider分页,我只能查看返回的第一页内容,如何查看后面的几页?关键字是什么? public function actionIndex(){

    $model = Address::find();
    $provider = new ActiveDataProvider([
        'query' => $model,
        'pagination' => [
            'pageSize' => 10,
        ],
        'sort' => [
            'attributes' => ['id', 'contact'],
        ],
    ]);

    $this->result['info'] = $provider->getModels();
    return $this->mesgFormat($this->result['info'], $this->result['message'], $this->result['isError']);
}
    没有找到数据。
您需要登录后才可以回复。登录 | 立即注册