我想从ajax调用发送自定义消息到我的bootstrap flash消息,其中我显示错误。有什么想法吗?
以下代码无效。
$.ajax({
type: 'POST',
url: '{{ route('einsight.servicereports.validateDates') }}',
cache: false,
data: $(this).serialize(),
success: function(data) {
$('#form').html("<thead><tr><td>OK</td></tr>");
},
error: function(result){
/* Custom message I want to send*/
} });
html with laravel:
<div class="flash-message" id="error-message">
@if ($errors->any())
@endif
</div>
答案 0 :(得分:0)
尝试将代码的成功部分更改为
error: function(data) {
$('#error-message').html("bla");
},
而且你也不需要这个部分
@if ($errors->any())
@endif