Hi i am facing a docx type validation problem. I tried $validator = Validator::make($request->all(), [ 'resume' => 'mimes:doc,pdf,docx' ]);It will upload pdf file with no error but whenever i try to upload docx files it gives validation error 'must be a file of type: doc, pdf, docx'any idea 解决方案 thanks solved it by allowing zip$validator = Validator::make($request->all(), [ 'resume' => 'mimes:doc,pdf,docx,zip' ]);this is because https://en.wikipedia.org/wiki/Office_Open_XML 这篇关于验证doc docx类型文件时出现laravel 5.1错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-28 23:50