param(); //合并验证参数 $params = array_merge($params,$validate_data); // 2.验证参数 if (!($scene ? $this->scene($scene)->check($params) : $this->check($params))) { $exception = is_array($this->error) ? implode(';', $this->error) : $this->error; JsonServer::throw($exception); } // 3.成功返回数据 return $params; } }