【问题标题】:Laravel: Join Closure Inside where closure. EloquentLaravel:在闭包里面加入闭包。雄辩
【发布时间】: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


    【解决方案1】:

    您的连接闭包不起作用的主要原因是它包含在高级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); 
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-10-11
      • 1970-01-01
      • 2021-12-14
      • 2014-04-14
      • 1970-01-01
      • 2017-04-07
      相关资源
      最近更新 更多