拉斯维加斯3499进入网站(中国)官方网站

方法不存在:app\home\controller\News->gsxw()

[0] HttpException in Controller.php line 102

查看错误代码
  1. $actionName = $reflect->getName();
  2. $this->request->setAction($actionName);
  3. } catch (ReflectionException $e) {
  4. $reflect = new ReflectionMethod($instance, '__call');
  5. $vars = [$action, $vars];
  6. $this->request->setAction($action);
  7. }
  8. } else {
  9. // 操作不存在
  10. throw new HttpException(404, 'method not exists:' . get_class($instance) . '->' . $action . '()');
  11. }
  12. $data = $this->app->invokeReflectMethod($instance, $reflect, $vars);
  13. return $this->autoResponse($data);
  14. });
  15. }
  16. /**