为了账号安全,请及时绑定邮箱和手机立即绑定

我无法检查在具有count()集合的laravel 6中是否存在变量中的数据

我无法检查在具有count()集合的laravel 6中是否存在变量中的数据

PHP
潇湘沐 2022-08-19 10:04:29
我无法检查 laravel 6 中的变量中是否有数据。这是函数。这里的问题是没有命中其他语句$tags->count()public function index(){    $tags = Constant_model::getDataAllWithLimit('tags',"id",'DESC',50);    if ($tags->count() >0) {        $data = array(            'title'=>'All Tags',            'description'=>'All Tags',            'seo_keywords'=>'All Tags',            'tags'=>$tags        );        return view('tags',$data);     }else{        $data = array(            'title'=>"Page Not found",            'description'=>"Page not found",            'seo_keywords'=>'',            );            return view('404',$data);    }}这里是getDataAllWithLimit函数public static function getDataAllWithLimit($table,$order_column,$order_type,$limit){    $data = DB::table("$table")->orderBy("$order_column", "$order_type")      ->paginate($limit);      return $data;  }
查看完整描述

2 回答

?
慕妹3242003

TA贡献1824条经验 获得超6个赞

你可以使用PHP的count()来计算所有元素。


public function index()

{

    $tags = Constant_model::getDataAllWithLimit('tags', 'id', 'DESC', 50);


    if (count($tags) > 0) {


        $data = array(

            'title' => 'All Tags',

            'description' => 'All Tags',

            'seo_keywords' => 'All Tags',

            'tags' => $tags

        );


        return view('tags', $data);

    }


    $data = array(

        'title' => 'Page Not found',

        'description' => 'Page not found',

        'seo_keywords' => '',

    );


    return view('404', $data);

}

public function getDataAllWithLimit($table, $order_column, $order_type, $limit)

{

    return DB::table($table)->orderBy($order_column, $order_type)->paginate($limit);

}


查看完整回答
反对 回复 2022-08-19
?
幕布斯7119047

TA贡献1794条经验 获得超8个赞

试试这个,希望它有帮助...


    if (count($tags->toArray()['data']) > 0) {


    $data = array(

        'title'=>'All Tags',

        'description'=>'All Tags',

        'seo_keywords'=>'All Tags',

        'tags'=>$tags

    );


    return view('tags',$data); 


}else{

    $data = array(

        'title'=>"Page Not found",

        'description'=>"Page not found",

        'seo_keywords'=>'',

        );


        return view('404',$data);

}


查看完整回答
反对 回复 2022-08-19
  • 2 回答
  • 0 关注
  • 81 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信