Laravel:加入封闭内部关闭。雄辩

时间:2015-11-06 07:25:50

标签: php mysql laravel eloquent query-builder

我试图在我的"属性"中选择一些注册表。使用过滤搜索功能的表。

在我的控制器中,我收到过滤器并使用高级处理它们,在其中我需要查看与其他表相关的注册表,当过滤器" room"用来。为此,我尝试在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);

连接语句根本没有运行。

它可能包括一个关闭闭包在我想要在这里做封闭的地方吗?还有另一种方法可以实现这个目标吗?

1 个答案:

答案 0 :(得分:0)

您的联接闭包不起作用的主要原因是因为它包含在高级where闭包中。

以上是编写上述代码的laravel(右)方法:

$filter_type= Input::get('filter_type',null);
$filter_val= Input::get('filter_val',null);

//Start the query builder

$queryProperties = Property::newQuery();

//Switch on type of filter we received
switch($filter_type)
{
    case 'state'
        $queryProperties->where('state_id',$filter_val);
        break;
    case 'sub_category':
        $queryProperties->where('sub_category_id', $filter_val);
        break;
    case 'cat_operation':
        $queryProperties->where('cat_operation_id', $filter_val);
        break;
    case 'room':
        $queryProperties->join('properties_control', function($join) use ($filter_val)
        {
            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', '>=', $filter_val);
            }else{
                $join->on('properties.id', '=', 'properties_control.property_id')
                     ->where('properties_control.category_feature_item_id', '=', 75)
                     ->where('properties_control.category_feature_item_value', '=', $filter_val);
            }
        });        
        break;
}

$properties = $queryProperties->paginate(20); 
相关问题