search

Home  >  Q&A  >  body text

Why is the editing template rendering under the User controller different from that under the Grade controller?

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?


黄子乐黄子乐2585 days ago1327

reply all(1)I'll reply

  • 乘易网络

    乘易网络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

    reply
    0
  • Cancelreply