我正在使用Laravel框架开展电子商务项目。我有一个产品表,一个flavors表和一个flavor_product表(我相信这被称为数据透视表)。我有一个产品型号和一个Flavor模型(根据我的阅读,没有必要为数据透视表创建一个模型)。
在产品型号中,我定义了以下关系:
public function flavors()
{
return $this->belongsToMany('App\Flavor');
}
在Flavor模型中,我定义了以下关系:
public function products()
{
return $this->belongsToMany('App\Product');
}
现在,在我的产品控制器中,我尝试了以下内容:
$flavors = Product::select('id')->with('flavors')->get();
将被发送到适用的视图(product.blade.php)。
在product.blade.php中,我有以下内容:
@foreach ($flavors as $flavor)
<select id="product-flavor" class="bs-select">
<option value="{{ $flavor }}">{{ $flavor }}</option>
</select>
@endforeach
那么,给我的是什么?好吧,它向我展示了以下内容:
{"id":1,"flavors":[{"id":1,"name":"Cake Batter","created_at":"2018-05-29 20:12:56","updated_at":"2018-05-29 20:12:56","pivot":{"product_id":1,"flavor_id":1}},{"id":2,"name":"Caramel Coffee","created_at":"2018-05-29 20:48:25","updated_at":"2018-05-29 20:48:25","pivot":{"product_id":1,"flavor_id":2}},{"id":3,"name":"Chocolate Milkshake","created_at":"2018-05-29 20:49:09","updated_at":"2018-05-29 20:49:09","pivot":{"product_id":1,"flavor_id":3}},{"id":4,"name":"Cookies & Cream","created_at":"2018-05-29 20:49:50","updated_at":"2018-05-29 20:49:50","pivot":{"product_id":1,"flavor_id":4}},{"id":5,"name":"Vanilla Milkshake","created_at":"2018-05-29 20:50:16","updated_at":"2018-05-29 20:50:16","pivot":{"product_id":1,"flavor_id":5}}]}
我绝对不想要所有这些。我想要的只是通过数据透视表检索与该产品相关的风味名称。
我该如何处理?
以下代码位于ShopController.php中(关于如何检索和显示产品):
/**
* Display the specified resource.
*
* @param string $slug
* @return \Illuminate\Http\Response
*/
public function show($slug)
{
$product = Product::where('slug', $slug)->firstOrFail();
$mightAlsoLike = Product::where('slug', '!=', $slug)->mightAlsoLike()->get();
return view('product')->with([
'product' => $product,
'mightAlsoLike' => $mightAlsoLike,
]);
}
来自web.php:
Route::get('/shop/{product}', 'ShopController@show')->name('shop.show');
答案 0 :(得分:0)
你在这里做的是告诉Laravel从所有产品中选择id
并检索所有相关的口味。
Product::select('id') // <-- Will only select `id` attribute from the `products` table
->with('flavors') // <-- Will attach associated flavors to the product id
->get(); // <-- End the query (get all product ids and their flavours)
在您的情况下,您不想选择所有产品,并且您已正确设置关系。所以你应该做的是在原始查询上调用->with('flavors')
(在这种情况下实际上不需要,因为你不会遇到n+1
问题,但仍然是良好的做法):
$product = Product::where('slug', $slug)->with('flavors')->firstOrFail();
$mightAlsoLike = Product::where('slug', '!=', $slug)->mightAlsoLike()->get();
return view('product')->with([
'product' => $product,
'mightAlsoLike' => $mightAlsoLike,
]);
然后只需在视图中调用$product->flavors
:
@foreach ($product->flavors as $flavor)
<select id="product-flavor" class="bs-select">
<option value="{{ $flavor }}">{{ $flavor }}</option>
</select>
@endforeach
上面的视图代码可以按原样运行,而不会在查询中实际调用->with('flavors')
。 ->with(...)
渴望加载关系,并且在加载多个父项时显式调用是一种很好的做法,以避免n+1
问题(性能!)。
但是在你的情况下,你只展示了1种产品的风味,所以明确地调用它没有明显的优势(除了更清晰的代码)。
编辑以解决评论:
<select id="product-flavor" class="bs-select">
@foreach ($product->flavors as $flavor)
<option value="{{ $flavor->id }}">{{ $flavor->name }}</option>
@endforeach
</select>
您会看到多个选择,因为您在循环内打印整个选择而不是仅打印选项。
要显示当前风味的任何属性,只需调用属性名称:$flavor->name
例如。