当前位置:Gxlcms > PHP教程 > laravel输出变量到模板,变量在模板中再分一次类可以吗?这样可以只查询一次数据库

laravel输出变量到模板,变量在模板中再分一次类可以吗?这样可以只查询一次数据库

时间:2021-07-01 10:21:17 帮助过:3人阅读

laravel输出变量到模板,变量在模板中再分一次类可以吗?这样可以只查询一次数据库。
比如:
下面是一个用户的后台首页控制器,返回该用户发表的所有文章,像这样:

    public function index()
    {
        $user=\Auth::user();
        $articles = $user->articles;
        
        return view('user.dashboard.index',  compact('articles'));
    }

下面的代码是在view中显示所有文章:


    
        所有文章
    
    @if ($articles!=null)
    
        @foreach ($articles as $article)
        
        @endforeach
        
标题 发布时间 发布状态 操作
{{$article->title}} {{$article->created_at}} {{$article->status}} 详情 编辑
@else

没有文章

@endif

可是,这些文章分为两类:
一类是“已发布”,数据库字段status,值为“1”,
一类是“未发布”,数据库字段status,值为“0”,

问题:
现在需要这两类文章分开显示,已发布的显示在一个card中,未发布的显示在一个card中,可以在模板中直接分类吗?这样的话就不用查两次数据库。

回复内容:

laravel输出变量到模板,变量在模板中再分一次类可以吗?这样可以只查询一次数据库。
比如:
下面是一个用户的后台首页控制器,返回该用户发表的所有文章,像这样:

    public function index()
    {
        $user=\Auth::user();
        $articles = $user->articles;
        
        return view('user.dashboard.index',  compact('articles'));
    }

下面的代码是在view中显示所有文章:


    
        所有文章
    
    @if ($articles!=null)
    
        @foreach ($articles as $article)
        
        @endforeach
        
标题 发布时间 发布状态 操作
{{$article->title}} {{$article->created_at}} {{$article->status}} 详情 编辑
@else

没有文章

@endif

可是,这些文章分为两类:
一类是“已发布”,数据库字段status,值为“1”,
一类是“未发布”,数据库字段status,值为“0”,

问题:
现在需要这两类文章分开显示,已发布的显示在一个card中,未发布的显示在一个card中,可以在模板中直接分类吗?这样的话就不用查两次数据库。

只很容易,$articles 已经是 collections ,所以透过 where 即可过滤..
如下:


已发布


    
        已发布-所有文章
    
    @if ($articles!=null)
    
        @foreach ($articles->where('status', 1) as $article)
        
        @endforeach
        
标题 发布时间 发布状态 操作
{{$article->title}} {{$article->created_at}} {{$article->status}} 详情 编辑
@else

没有已发布文章

@endif

未发布


    
        未发布-所有文章
    
    @if ($articles!=null)
    
        @foreach ($articles->where('status', 0) as $article)
        
        @endforeach
        
标题 发布时间 发布状态 操作
{{$article->title}} {{$article->created_at}} {{$article->status}} 详情 编辑
@else

没有未发布文章

@endif

可以在模板里面进行两次循环,每次使用if判断,Card A中只有状态是已发布才显示。

$articles = $user->articles; 才是查数据库的操作,模版中foreach只是对这个数据进行循环,不会查数据库

人气教程排行