0
在laravel控制器我一個代碼一樣,錯誤發送到從laravel控制器AJAX請求,並改變DIV鑑於acordingly
$validator = Validator::make(Input::all(), $rules);
if ($validator->fails())
{
$data = array('errors' => $validator->errors()->toArray());
return Response::json($data);
}
發送的驗證錯誤的Ajax請求現在在阿賈克斯獲得我想要它(驗證錯誤)來打動文本區域和錯誤顯示div。爲此我正在這樣做。
bla bla blaala
success:function(data, textStatus, xhr, error){
if(data == "OK")
{
$('div.result').html('You have successfully posted ! Please refresh to see your post <hr/>');
//window.location.reload(true);
}
else
{
// $('div.arr').data(data.errors);
//alert("---"+data);
$('div.result').html('Your post can not be possible ! Please check the text bOx ! <hr/> ');
$('div.arr.errors').val(data.errors);
$("#ask").attr("disabled", false)
}
我想在這個
<div class="arr control-group{{ $errors->first('about', ' has-error') }}">
的效果,但只有錯誤在
<div class="result" style="color:red;">
</div>
工作。
如何收集錯誤並在視圖中顯示?
預先感謝您\ M/
感謝您的答覆兄弟!我會盡力實施它。並讓你知道是否有任何錯誤。請加入我的網站[點擊此處](http://dolovers.com/auth/signin):)謝謝! –