这不知道是不是bug? 改用translates做了解决。 ``` $v = \Inhere\Validate\Validation::make(data: [ 'title' => '', 'name' => '', ], rules: array( ['title,name', 'required', 'msg' => [ 'tagId' => '标题不能为空。', 'userId' => '姓名不能为空。', ]], ))->validate( stopOnError: !true ); if ($v->isFail()) { var_dump($v->getErrors()); }; ``` <img width="616" alt="截屏2022-07-18 17 43 54" src="https://user-images.githubusercontent.com/4530373/179486238-fbfb5c62-6a17-4b11-839b-82efd6483f48.png">