Edit template rendering of user controller
$this->view->assign('user_info',$result->getData());
grade controller Edit template rendering
$this->view->assign('grade_info',$result);
Why is there no getData method under grade?
乘易网络2017-11-17 16:44:35
assign The first parameter is the variable name referenced by the front end, followed by the value $this->view->assign('user_info',$result->getData()); The value passed is the getData() method The second value obtained is directly passed the value of the $result variable