请问:我是用wangeditor编辑器上传图片,在控制器做验证为什么拿不到validate返回的josn错误,老是302到提交页面 ?有知道的吗
、、、
public function imageUpload(Request $request)
{
// 自动生成唯一文件名...
//方法1
//$path = Storage::putFile('photo', new File(request('wangEditorH5File')));
//方法2
$this->validate($request,[
'wangEditorH5File' => 'file|max:10'
]);
$path = $request->file('wangEditorH5File')->store('photo');
return asset('storage/'.$path);
//dd(request('wangEditorH5File'));
}
、、、