'required|max:60|alpha_dash', 'intro' => 'max:600' ]; } public function messages() { return [ 'name.required' => '名称不能为空', 'name.max' => '名称字符过长,最大不能超过 60', 'name.alpha_dash' => '名称只能是字母、数字,短破折号(-)和下划线(_)', 'intro.max' => '简介字符过长,最大不能超过 600' ]; } }