【发布时间】:2016-02-07 06:57:11
【问题描述】:
我正在尝试使用过滤器搜索功能在我的“属性”表中选择一些注册表。
在我的控制器中,我接收过滤器并使用高级处理它们,在其中,当使用过滤器“房间”时,我需要在其中查看与其他表相关的注册表。为此,我尝试在 where 闭包内进行连接,但连接根本不起作用,搜索完成后忽略了连接。
控制器:
$filter_type= Input::has('filter_type') ? Input::get('filter_type') : NULL;
$filter_val= Input::has('filter_val') ? Input::get('filter_val') : NULL;
$state= NULL;
$sub_category= NULL;
$cat_operation= NULL;
$room= NULL;
if($filter_type == 'state'){
$state = $filter_val;
}
if($filter_type == 'sub_category'){
$sub_category = $filter_val;
}
if($filter_type == 'cat_operation'){
$cat_operation = $filter_val;
}
if($filter_type == 'room'){
$room = $filter_val;
}
$properties = Property::where(function($query) use ($state, $sub_category, $cat_operation, $room){
if (isset($state)){
$query->where('state_id', $state);
}
if (isset($sub_category)){
$query->where('sub_category_id', $sub_category);
}
if (isset($cat_operation)){
$query->where('cat_operation_id', $cat_operation);
}
if(isset($room)){
$query->join('properties_control', function($join) use ($room)
{
if($room == 5){
$join->on('properties.id', '=', 'properties_control.property_id')
->where('properties_control.category_feature_item_id', '=', 75)
->where('properties_control.category_feature_item_value', '>=', $room);
}else{
$join->on('properties.id', '=', 'properties_control.property_id')
->where('properties_control.category_feature_item_id', '=', 75)
->where('properties_control.category_feature_item_value', '=', $room);
}
});
}
})->paginate(20);
join 语句根本没有运行。
可以像我在这里尝试做的那样在 where 闭包中包含一个连接闭包?还有其他方法可以做到这一点吗?
【问题讨论】:
标签: php mysql laravel eloquent query-builder