我用Http请求提交Content-Type: multipart/form-data; boundary=-------------------------7dvisualgetfile这样的数据给webman,然后通过$request->post()获取不到post数据,是空的
请求头信息:
Content-Type: multipart/form-data; boundary=-------------------------7dvisualgetfile
Post数据:
---------------------------7dvisualgetfile
Content-Disposition: form-data; name="HtmlCode"
Content-Type: application/octet-stream
这里是一段html代码,有很长
---------------------------7dvisualgetfile--
public function langCatPut(Request $request)
{
$PostData = $request->post('HtmlCode');
return response(json_encode($PostData));
}
获取到的post数据是空的
本地提交HTTP请求到webman的网站,"workerman/webman-framework": "^1.4.3",
$request->file('HtmlCode');
之前用$request->file() 是获取不到。。不知道这种获取特定的能不能获取到
$request->all()呢