我需要根据其类别ID获取所有产品。 这是我的控制器。
UserProductsController
class UserProductsController extends Controller
{
public function index()
{
$products = Product::get();
return view ('products')->with(compact('products'));
}
public function product_categories()
{
$categories = Category::all();
return view ('categories')->with(compact('categories'));
}
public function products(Category $category)
{
$category->load('products');
return view('categorize')->withCategory($category);
}
}
这是我的刀片文件。
@foreach($category as $c)
<div class="mb-2" class="font-size-12 text-gray-5">{{ $c ['cat_name'] }}</a></div>
<h5 class="mb-1 product-item__title" class="text-blue font-weight-bold">{{ $c ['prod_name'] }}</a></h5>
<li class="line-clamp-1 mb-1 list-bullet">{{ $c ['prod_description'] }}</li>
<div class="text-gray-20 mb-2 font-size-12">{{ $c ['prod_item_code'] }}</div>
<div class="flex-center-between mb-1">
<div class="prodcut-price">
<div class="text-gray-100">LKR {{ $c ['prod_price'] }}.00</div>
</div>
</div>
</div>
@endforeach
这是我的路线文件。
Route::get('/categorize/{category_id}', 'UserProductsController@products')->name('categorize');
这是类别表。
public function up()
{
Schema::create('categories', function (Blueprint $table)
{
$table->bigIncrements('id');
$table->unsignedBigInteger('parent_id')->nullable();
$table->string('cat_name')->nullable();
$table->string('cat_image_path')->nullable();
$table->timestamps();
});
}
这是我的产品表。
public function up()
{
Schema::create('products', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('prod_name');
$table->string('prod_brand')->nullable();
$table->unsignedBigInteger('category_id');
$table->string('prod_description')->nullable();
$table->string('prod_item_code')->nullable();
$table->string('prod_modal')->nullable();
$table->string('prod_size')->nullable();
$table->string('prod_weight')->nullable();
$table->string('prod_height')->nullable();
$table->string('prod_manufacturer')->nullable();
$table->float('prod_price')->nullable();
$table->float('prod_discount')->nullable();
$table->float('prod_quantity')->nullable();
$table->string('prod_image_path')->nullable();
$table->timestamps();
$table->foreign('category_id')
->references('id')
->on('categories')
->onDelete('cascade');
});
}
这是我的类别模型。
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Category extends Model
{
public function products()
{
return $this->hasMany(Product::class);
}
}
这是我的产品模型。
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Storage;
class Product extends Model
{
public function category()
{
return $this->belongsTo('App\Category');
}
}
当我选择特定类别时,URL会将我定向到该category_id的页面,但数据没有通过。可能是什么问题呢?有人请指导我吗?
答案 0 :(得分:3)
您可以通过急切的加载来实现。 快速加载是一个概念,在该概念中,检索项目时,您可以同时获得所有需要的项目以及所有(或大多数)相关项目。这与延迟加载相反,后者一次只能获得一项,然后仅在需要时才检索相关项
类别模型:
public function products()
{
return $this->hasMany(Product::class);
}
在您的控制器上:
public function products(Request $request, $category_id)
{
$category= Category::with('products')->findOrFail($category_id);
return view('categorize')->with(compact('category'));
}
答案 1 :(得分:1)
我了解的是,您在前端有一些“类别ID”(也许是HTML),并且您希望通过某些路由“ / categorize / {category_id}”将该ID传递给您的控制器,并获得与之关联的所有产品它。因此,您必须像下面那样重构控制器方法。
public function products(int $category_id)
{
$products = Product::where('category_id',$category_id)->get();
return view ('categorize')->with(compact('products'));
}
如果您有任何其他需求,请随时提出并详细说明您的问题。我一定会帮助你的。
答案 2 :(得分:1)
您在路线中提到category_id
,因此在控制器中您需要这样做
public function products(Category $category_id) // parameter name should match with router param
{
$category_id->load('products');
$category = $categoryid;
return view('categorize')->withCategory($category);
}
或者您可以执行此操作的正确方式
Route::get('/categorize/{category}', 'UserProductsController@products')->name('categorize');
category_id
到category
,则您的路由模型绑定将起作用
参考链接https://laravel.com/docs/7.x/routing#route-model-binding
答案 3 :(得分:1)
如果要使用路由模型绑定,则必须这样定义路由:
Route::get('/categorize/{category}', 'UserProductsController@products')->name('categorize');
因此,在这种情况下,$category
实际上是模型,而不是集合。因此,您当前拥有的foreach
毫无意义。应该是这样的:
@foreach($category->products as $product)
<div>{{ $product->prod_name }}</div>
...
@endforeach