网站及其行为没有名为“orderBy”的方法或闭包

时间:2016-09-12 09:59:40

标签: php yii

当我拿到这些记录然后得到这个错误如何解决它?

enter image description here

public function actionIndex()     {

        $query = Site::model();

        $pagination = new CPagination([
            'defaultPageSize' => 5,
            'totalCount' => $query->count(),
        ]);

        $countries = $query->orderBy('name')
            ->offset($pagination->offset)
            ->limit($pagination->limit)
            ->all();

        return $this->render('view', [
            'countries' => $countries,
            'pagination' => $pagination,
        ]);
}

1 个答案:

答案 0 :(得分:1)

你应该从你的代码中区分yii1和yii2.你一起使用了yii1和yii2。