我有5张桌子,产品有2张桌子。 products
,product_translations
,两个类别表。 product_categories
,product_category_translations
和一个用于映射表product_product_category
的表。现在,我想获取所有产品和产品内部数组,我想要所有相关的类别数组。
Array{
0 => {
id => 1
name => 'Camera',
is_featured => 1,
categories => {
0 => {
id => 1,
name => 'abc',
locale => 'en'
},
1 => {
id => 2,
name => 'def',
locale => 'en'
},
2 => {
id => 3,
name => 'test',
locale => 'en'
}
}
},
2 => {
id => 2
name => 'Computer',
is_featured => 1,
categories => {
0 => {
id => 2,
name => 'def',
locale => 'en'
},
1 => {
id => 3,
name => 'test',
locale => 'en'
}
}
}
}
我可以使用category_set
来获取模板文件中的类别ID,但是不能从类别翻译记录中获取记录。c