gpt4 book ai didi

php - 从 db 获取数据到 laravel 5.2 中的 View 的问题

转载 作者:搜寻专家 更新时间:2023-10-31 21:26:24 26 4
gpt4 key购买 nike

我是 laravel 的新手,通过在 laravel 5.2 中自己创建一些测试项目来研究它。但是我现在在 laravel 5.2 中从 db 正确获取数据并显示结果时遇到了一些问题。我的数据库中有一个菜单表,其中包含字段 -> id、menutype、itemname、itemprice、itemimage,其中包含一些数据。我想以特定方式在我的网页上显示它,如下面给出的屏幕截图所示。

参见:

这是我的数据库表截图,上面有值。看:

我在我的 Controller (GuestController.php) 中添加了以下代码

public function menu() {
$result=DB::table('menu')->select('menutype')->distinct()->get();
return view('guest.menu')->with('data',$result);
}

在 View (menu.blade.php) 中,我给出了以下代码:

<div class="row">
@foreach($data as $row)
<div class="col-1-3">
<div class="wrap-col">
<h3>{{$row->menutype}}</h3>
<?php
$item=DB::table('menu')->where('menutype', $row->menutype)->get();
?>
@foreach($item as $row)
<div class="post">
<a href="#"><img src="assets/images/{{$row->itemimage}}"/></a>
<div class="wrapper">
<h5><a href="#">{{$row->itemname}}</a></h5>
<span>Rs.{{$row->itemprice}}/-</span>
</div>
</div>
@endforeach
</div>
</div>
@endforeach
</div>

这非常有效,我得到了所需的输出,如上面给出的产品页面屏幕截图所示。但我知道这种方法是不正确的,因为我在 View 本身上给出查询语句,如下所示,以获取数据及其违反 MVC 概念:

<?php $item=DB::table('menu')->where('menutype', $row->menutype)->get(); ?> 

那么我可以实现任何其他简单且更好的方法来获得上述所需的输出并保持 MVC 标准吗?请帮忙!提前致谢...

最佳答案

Laravel 的集合可以真正帮助你解决这个问题。具体来说,groupBy 方法。首先,您将获得包含所有数据的所有菜单项。然后,您使用 Collection 上的 groupBy 方法根据菜单项的 menutype 将菜单项分组到单独的数组中。然后,您可以使用这个集合来完成您 View 中的所有工作。

代码如下所示。如果愿意,您可以将几行合并为一行,但它被分成多行以显示所有步骤:

public function menu() {
// get all the menu items
$menuArray = DB::table('menu')->get();
// create a Laravel Collection for the items
$menuCollection = collect($menuArray);
// group the Collection on the menutype field
$groupedMenu = $menuCollection->groupBy('menutype');

/**
* Note that Eloquent queries (using Models) will automatically return
* Collections, so if you have your Menu model setup, your first two
* lines would just be:
* $menuCollection = Menu::get();
* or, all three lines could be combined into:
* $groupedMenu = Menu::get()->groupBy('menutype');
*/

// pass the grouped Collection to the view
return view('guest.menu')->with('data', $groupedMenu);
}

现在,在您看来,您的外部 foreach 将遍历这些组。内部的 foreach 将遍历每个组中的项目:

<div class="row">
@foreach($data as $type => $items)
<div class="col-1-3">
<div class="wrap-col">
<h3>{{$type}}</h3>
@foreach($items as $item)
<div class="post">
<a href="#"><img src="assets/images/{{$item->itemimage}}"/></a>
<div class="wrapper">
<h5><a href="#">{{$item->itemname}}</a></h5>
<span>Rs.{{$item->itemprice}}/-</span>
</div>
</div>
@endforeach
</div>
</div>
@endforeach
</div>

关于php - 从 db 获取数据到 laravel 5.2 中的 View 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35350647/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com