我真的很新推出Laravel Blades中的Ajax。我一直在尋找教程等,但它很混亂。我希望你能耐心等待我Laravel Blade中的Ajax
所以我有一個刀片,我想應用Ajax,因此它可能會每秒刷新一次。
我想知道在整個頁面上應用Ajax是否可取。
如果沒有,這裏是我要使用Ajax的刀片部分(它在forelse中);
<div class="row">
@forelse($receipt_ids as $receipt_id)
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading text-center">
{{$receipt_id->receipt_id}}
</div>
<div class="panel-body">
<table class="table table-bordered table-responsive">
<thead>
<th>Name</th>
<th>Quantity</th>
</thead>
<tbody>
@foreach($orders as $order)
@if($receipt_id->receipt_id == $order->receipt_id)
<tr>
<td>{{$order->item}}</td>
<td>{{$order->qty}}</td>
</tr>
@endif
@endforeach
</tbody>
</table>
</div>
<div class="panel-footer clearfix">
<button type="submit" class="btn btn-success pull-right" style="margin-right: 10px;">
<i class="fa fa-check-circle" aria-hidden="true"></i> Served
</button>
</div>
</div>
</div>
@empty
@endforelse
</div>
我有一種感覺,阿賈克斯將與時間變化或東西。
編輯:我現在有一個領導。我用了;
<script type="text/javascript">
$(document).ready(function() {
setInterval(function()
{
alert('test');
}, 2000)
});
</script>
現在我的問題是我可以做什麼語法來刷新頁面?
謝謝!或多或少我現在領先,哈哈。我嘗試使用該功能,並提出警告來測試它。現在我將嘗試使用'$ .get'。我編輯了我的主帖,我的JavaScript正在工作。 –