我正在Laravel 5.4项目中工作。当我上传文件(doc,docx,pdf)时,它已成功上传。但是,如果我在控制器中实现验证,如
public function save_attachment(Request $request){
$this->validate(request(), [
'user_name' => 'required',
'attachment' => 'required|mimes:pdf,doc,docx',
]);
..... }
它使用The attachment must be a file of type: pdf, doc, docx.
我尝试使用doc和pdf文件返回相同的内容。我的问题在哪里谢谢你。