laravel Validator ajax返回错误信息的方法

吾爱主题 阅读:139 2021-08-23 16:47:00 评论:0

将return back()->withErrors($validator->errors())->withInput();替换为下面的代码

?
1 2 3 4 5 6 7 8 9 10 11 12 13 $validator = \Validator::make( $request ->input(), $rules , $messages );        if ( $validator ->fails()) {          //将返回错误循环组装成字符串          $arr = [];          foreach ( $validator ->getMessageBag()->toArray() as $k => $error ){            array_push ( $arr , "<li>" . $error [0]. "</li>" );          }          $str = implode( ' ' , $arr );          return \Response::json([            'success' => false,            'errors' => $str          ]);        }

然后直接在ajax输出相应的错误就行了

?
1 2 3 4 5 < div class = "alert alert-danger alert-dismissible fade in" style = "display: none;" id = "yc" >   < button type = "button" class = "close" data-dismiss = "alert" aria-label = "Close" >< span aria-hidden = "true" >×</ span ></ button >   < ul class = "margin-bottom-none padding-left-lg" id = "li1" >   </ ul > </ div >
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 $.ajax({    method: 'post' ,    data: form,    dataType: 'json' ,    url: $( '#url' ).val(),    success: function (data) {    //console.log(data);    if (data.code == 0){     $( '#textarea' ).html(JSON.stringify(data.resp, null , "\t" )).css( "display" , "block" );    } else if (data.code == 1) {     layer.msg( "失败" +data.msg,{icon:2})    } else if (data.success == false ) {     if (data.errors){     $( '#yc' ).css( 'display' , 'block' );     $( '#li1' ).html(data.errors);     }    }    }   })

以上这篇laravel Validator ajax返回错误信息的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qq_39864544/article/details/89239117

可以去百度分享获取分享代码输入这里。
声明

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

【腾讯云】云服务器产品特惠热卖中
搜索
标签列表
    关注我们

    了解等多精彩内容