使用opencart 3.0.2.0版。在确认订单时,此消息弹出。订单确认未完成,这是代码中显示错误的79号
if ($reflection->hasMethod($this->method) && $reflection->getMethod($this->method)->getNumberOfRequiredParameters() <= count($args)) {
return call_user_func_array(array($controller, $this->method), $args);
} else {
return new \Exception('Error: Could not call ' . $this->route . '/' . $this->method . '!');
}
其中79行代码为return call_user_func_array(array($controller, $this->method), $args);
我该如何解决?没有订单进行中...