我在Laravel 5数据透视表或多级关系中苦苦挣扎,我想出了如何获得所需的结果,但是我认为这样做的方式是错误的,因为我应该循环两次几乎相同数据以获得预期的结果。此外,所有属性和选项都是可翻译的。
获取结果(可翻译的属性和选项)
$product = App\Model\Product::find(1);
foreach ($product->attributeData as $key => $value) {
foreach ($value->attributes as $k => $v) {
echo $v->{'name:en'}.' '.$v->currentOption->{'option_name:en'}.'<br>';
}
}
有3个表(product_attributes,属性,选项)
-- product_attributes [ id|product_id|attribute_id|option_id ]
-- attributes [ id ] ( name, etc. on translation table )
-- attribute_options [ id|attribute_id ] ( name and other data also in stranslation table )
产品型号
public function attributeData() : HasMany
{
return $this->hasMany(ProductAttribute::class);
}
产品属性模型
public function product()
{
return $this->belongsTo(Product::class);
}
public function attributes()
{
return $this->hasMany(Attribute::class,'id','attribute_id');
}
public function options()
{
return $this->hasMany(AttributeOption::class,'id','option_id');
}
属性模型
public function options() : HasMany
{
return $this->hasMany('App\Model\AttributeOption', 'attribute_id', 'id');
}
public function product()
{
return $this->belongsTo(ProductAttribute::class,'id','attribute_id');
}
public function currentOption()
{
return $this->hasOne(AttributeOption::class)->whereId($this->product()->first()->option_id);
}
属性选项模型
public function attribute()
{
return $this->belongsTo(Attribute::class);
}
我做错了什么,还有可能避免这种多循环吗?
答案 0 :(得分:1)
Product
和Attribute
之间的关系为BelongsToMany
:
public function attributes()
{
return $this->belongsToMany(Attribute::class, 'product_attributes');
}
foreach ($product->attributes as $attribute) {
}