Using $_FILES can get information, but I want to use laravel's $request to get the information and process it. Does anyone have a solution?
PHP中文网2017-05-31 10:33:43
Print $request->headers
and see what the Content-Type
sent by ajax is. Generally, the Content-Type
is wrong.
淡淡烟草味2017-05-31 10:33:43
If the file is cross-domain, the file may not be received. I don’t know what your specific situation is.