我想要列出存储在MYSQL数据库中的停车位信息。我正在使用AJAX来调用API端点(/ api / spots)并返回一个斑点列表。我使用刀片语法为信息布局创建了局部视图(partials / Spot.blade.php)。
我想知道是否有办法创建一个控制器方法,它将返回局部视图并将其渲染到页面的一部分,而不会返回到服务器。这可能使用我的partials / Spot.blade.php吗?也许我应该创建一个方法来将所有HTML中的数据作为字符串返回,并将get JS添加到DOM中?
我目前的做法是在最初加载页面时渲染partials / Spot.blade.php,然后使用CSS将其从屏幕上删除。然后在AJAX调用服务器之后,我抓住这个隐藏部分中的HTML并使用REGEX将数据放入布局中。这看起来有点脏。只是想知道其他人是如何解决这个问题的。
非常感谢您的反馈,
马特
答案 0 :(得分:3)
很简单(:
查看此示例并进行自己的修改:
控制器:
class StatisticsController extends Controller
{
public function index()
{
return view('statistics.index');
}
public function filter(Request $request, $fields) {
// some calculation here...
return view('statistics.response', compact('stats')); // will render statistics/response.blade.php file with passing results of filter
}
}
的观点:
带有日期过滤功能的页面 统计/ index.blade.php
@extends('layouts.billing')
@section('title') Statistics @stop
@section('js_footer')
<script>
function doGet(url, params) {
params = params || {};
$.get(url, params, function(response) { // requesting url which in form
$('#response').html(response); // getting response and pushing to element with id #response
});
}
$(function() {
doGet('/statistics/filter'); // show all
$('form').submit(function(e) { // catching form submit
e.preventDefault(); // preventing usual submit
doGet('/statistics/filter', $(this).serializeArray()); // calling function above with passing inputs from form
});
});
</script>
@stop
@section('content')
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3>Statistics</h3>
</div>
<div class="panel-body">
<form>
<label>Time</label>
<div class="input-group">
<input type="text" name="time_from" value="{{ date('Y-m').'-01 00:00:00' }}" class="form-control" autocomplete="off">
<input type="text" name="time_to" value="{{ date('Y-m-d H:i:s', time()) }}" class="form-control" autocomplete="off">
</div>
<button type="submit" class="btn btn-sm btn-primary pull-right">
<i class="fa fa-search"></i> Show
</button>
</form>
</div>
</div>
</div>
<div class="col-xs-12">
<div id="response"> HERE WILL BE INJECTED RESULT OF FILTERING </div>
</div>
</div>
@stop
和部分用于渲染过滤的结果:
统计/ response.blade.php
<div class="table-responsive">
<table class="table table-striped table-borderless text-center">
<thead>
<th>ID</th>
<th>Partner</th>
<th>Tariffs</th>
<th>Total</th>
</thead>
<tbody>
@foreach($stats AS $stat)
some data here
@endforeach
</tbody>
</table>
</div>