您好我正在尝试使用10月CMS活动记录实施进行组合查询,以过滤掉用户选择的输入。
四个模型Color, Series, Department
和Product
的关系如下:
Product
型号
public $belongsTo = [
'color' => 'depcore\parts\Models\Color',
];
public $belongsToMany = [
'series' => [
'depcore\parts\Models\Series',
'table' => 'depcore_parts_products_series',
'order' => 'name',
],
'departments' => [
'depcore\parts\Models\Department',
'table' => 'depcore_parts_products_departments',
// 'order' => 'name'
]
];
Department
和Series
型号
public $hasMany = [
'products' => [
'\depcore\parts\Models\Product',
'table' => 'depcore_parts_products_departments',
]
];
Color
模型
public $hasMany = [
'products' => [
'\depcore\Parts\Models\Product'
]
];
用户输入通过ajax发送到现在看起来像这样的功能
public function onFilterProducts(){
$filters = Request::input('Filter');
if ( isset( $filters['colors'] ) or isset( $filters['departments'] ) or isset ( $filters['series'] ) ) {
// $this->page['products'] = Product::whereIn ( 'color_id', $filters['colors'] )->take( 10 )->get();
$this->page['products'] = Product::where ( function ( $query ) use ( $filters ) {
if ( isset ( $filters['colors'] ) ) $query->whereIn('color_id', $filters['colors']);
if ( isset ( $filters['series'] ) ) $query->with(
['series'=> function ( $subquery ) {
$subquery->whereIn('series_id', $filters['series']);
}]);
} )->take(9)->get();
}
else
$this->page['products'] = Product::listFrontEnd();
}
正如你所看到的那样,我试图在颜色查询之后对系列模型进行多对多关系的过滤(这个工作正常)。
问题在于多对多关系我试图使用不同的方法解决这个问题,没有错误(但也没有结果)或者说错误说下面的函数where
做了不行。
if ( isset ( $filters['series'] ) ) $query->series()->whereIn ( 'series', $filters['series'] );
“调用未定义的方法depcore \ parts \ Models \ Product :: where()”on 第1421行 /var/www/public/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php
我不知道这是否有可能实现这种方式,还是我需要采取不同的方法?
答案 0 :(得分:0)
所以这是我提出的解决方案,使用whereIn
方法制作另一个匿名函数
if ( isset ( $filters['series'] ) ) {
$query->whereHas ( 'series', function ( $q ) use ( $filters ){
$q->whereIn ( 'id', $filters['series'] ); }
);
}