[0] HttpException in Module.php line 119

方法不存在:wstmart\home\controller\Shops->brandns-19-485()

  1. $vars = $this->app->config('app.url_param_type')
  2. ? $this->app['request']->route()
  3. : $this->app['request']->param();
  4. } elseif (is_callable([$instance, '_empty'])) {
  5. // 空操作
  6. $call = [$instance, '_empty'];
  7. $vars = [$actionName];
  8. } else {
  9. // 操作不存在
  10. throw new HttpException(404, 'method not exists:' . get_class($instance) . '->' . $action . '()');
  11. }
  12. $this->app['hook']->listen('action_begin', $call);
  13. return Container::getInstance()->invokeMethod($call, $vars);
  14. }
  15. }

Call Stack

  1. in Module.php line 119
  2. at Module->run() in Url.php line 26
  3. at Url->run() in App.php line 362
  4. at App->run() in index.php line 42