if (!$v->check($this->request->param())) {
throw new ValidateException($v->getError());
}我尝试修改代码为下面的格式就成功验证了 if (!$v->check(array_merge($this->request->param(),$this->request->file()))) {
throw new ValidateException($v->getError());
}我认为这是一个bug,希望团队能及时修复最佳答案