关于表单验证跳转问题

public function store(Request $request){
$err = $this->validate($request,['name'=>'required|unique:app|max:32',
'url'=>'required|url|max:128',
'code'=>'required|unique:app|max:32'
]);
echo "<script>alert(\"1111111\");</script>";
if($err->fails()){

echo "<script>alert(\"22222222\");</script>";

}
}
为什么 添加了 验证之后 下面的 alert() 代码不执行了 直接跳转回去了
已邀请:

entere

赞同来自: 灬上天丶遁地

$this->validate() 验证失败直接跳了,程序没有走到下一步

灬上天丶遁地

赞同来自:

哦 谢谢 ,那个再问一下, 有没有什么办法 ,阻止它自动跳转,我想要向模板输出json数据

要回复问题请先登录注册