model=new Department(); $this->departdata=Department::getDepartData(); $this->assign('departdata',$this->departdata); } #[Route('GET,JSON','index')] public function index() { if (false === $this->request->isAjax()) { return $this->fetch(); } $result = ['total' => 1000, 'rows' =>$this->departdata]; return json($result); } }