model = new \app\api\model\SystemBasicinfo; } public function index(){ $post = $this->request->post(); $data = $this->model->field('type,title,content')->select(); $return = []; foreach($data as $k=>$v){ $return[$v['type']] = $v; } if($post['type']) $return = $return[$post['type']]; $this->success('获取成功',$return); } }