我希望在提交表单后运行json_encode($request->all())
,但返回的数组是"污染" _method
和_token
值。
是否有任何巧妙的方法可以从生成的json中排除特定于框架的字段?
答案 0 :(得分:6)
$request->only('username', 'password');
或
$request->except('_method', '_token');
来源: https://laravel.com/api/5.3/Illuminate/Http/Request.html#method_only
答案 1 :(得分:3)
是的,Request类只提供
$request->except('_method', '_token')