['except' => ['Index'] ] ]; protected function getData($cid){ $where = ['category_id'=>$cid]; $list = Db::table('fa_article')->withAttr('lesson', function($value, $data){ return Db::table(self::ARTICLE_EDUCATION_LIVE)->field('lesson_period,tag_ids as series_num')->where('article_id', $data['id'])->find(); } ) ->where($where) ->page(1) ->limit(10) ->order('id desc') ->select(); return $list; } public function Index(){ $data = $this->getData(370); $this->apiSuccess('ok', ['list' => $data]); } }