我创建了一个过滤数据的应用程序。在索引内部,我根据描述,模型,状态,库存和类别制作了过滤器来过滤产品。
我的类别是通过erp_categoy
表格组织的,与产品的关系是通过erp_product_category
(接收产品ID +类别ID)进行的。
我在Model:Product,Category和ProductCategory中创建了一个BelongsToMany关系。
产品型号
public function category()
{
return $this->belongsToMany('App\Category', 'erp_product_category', 'erp_productid', 'erp_categoryid');
}
类别模型
public function product()
{
return $this->belongsToMany('App\Product','erp_product_category', 'erp_categoryid', 'erp_productid');
}
Product_category模型
public function product()
{
return $this->belongsTo('App\Models\Product', 'erp_categoryid', 'erp_categoryid');
}
在我的索引中,我创建了一个选择列表,列出了'erp_category'表的所有类别。
<select id="categoria" name="categoria" class="form-control" style="width: 150px;">
@foreach($cat as $categoria)
<option value="{{$categoria->erp_categoryid}}" @if($categoria->erp_categoryid === session('categoria')) selected @endif >{{$categoria->erp_name}}</option>
@endforeach
</select>
我扩展了JavaScript并将值存储在会话“类别”中。
<script src="{{ asset('assets/js/ProductSearch.js') }}"></script>
<script>
var postSearch = '{{ route('product::searchPost') }}';
var searchRequest = {
'categoria' :'{{session('categoria')}}',
};
</script>
然后我通过JS进行了研究。
$(document).on('blur', '#categoria', function(){
var categoria = $('#categoria').val();
searchRequest['categoria'] = categoria;
doSearch();
});
function doSearch() {
$.post(postSearch, {
'search_data': JSON.stringify(searchRequest),
'_token': $('meta[name=csrf-token]').attr('content'),
}
, function(data) {
$('#product-table').html(data);
});
}
我期待产品表(我创建的表返回值)。我通过select输入的类别列出我的产品,但它返回索引的初始列表。
产品表
<td>
@foreach($prod->category as $categoria)
{{$categoria->erp_name}}
@endforeach
</td>
控制器
public function search(Request $request)
{
$product = Product::query();
$categoria = Category::query();
if ($request->isMethod('post'))
{
$data = json_decode($request->search_data);
$categoria;
$categoria = $data->categoria;
session(['categoria' => $categoria]);
if(strlen(session('categoria')) > 0)
{
$product_ids = Product::whereHas('category', function ($query){
$query->where('erp_category.erp_categoryid', '=', session('categoria'));
})->get();
$ids = [];
foreach($product_ids as $product_data)
{
$ids[] = $product_data->erp_productid;
}
$product = $product->whereIn('erp_category.erp_categoryid', $ids);
}
$content = $product->paginate(10);
$cat = Category::all();
if ($request->isMethod('post'))
{
return view('admin.product-table')->with('product', $content)->with('cat',$cat);
} else
{
return view('admin/product')->with('product', $content)->with('cat',$cat);
}
有什么建议吗?
答案 0 :(得分:1)
尝试将代码更改为以下内容:
$content = null;
if(strlen(session('categoria')) > 0) {
$product_ids = Product::whereHas('category', function ($query){
$query->where('erp_category.erp_categoryid', '=', session('categoria'));
});
$content = $product_ids->paginate(10);
$cat = Category::all();
}
if ($request->isMethod('post')) {
return view('admin.product-table')->with('product', $content)->with('cat',$cat);
} else {
return view('admin/product')->with('product', $content)->with('cat',$cat);
}
然后是观点:
@if ($product !== null)
@foreach($product as $p)
<td>
@foreach($p->category as $categoria)
{{$categoria->erp_name}}
@endforeach
</td>
@endforeach
@endif
当您致电whereIn
或类似的事情时,必须发生控制器中的问题。可能你不需要再次查询Produto。
第二件事是你没有在视图中使用结果。你正在调用关系函数。
试试这个并检查它是否有帮助......