opencart中存在oc_category_path table的要求是什么?
what is the requirement of oc_category_path table exists in opencart?
我无法理解在 opencart 中有 category_path table 的概念。任何opencart专家都可以用scenario/example解释一下吗?
category_path
table 存储与类别层次结构相关的数据。例如,假设您有顶级类别 "Shoes" 和 category_id 7。"Shoes" 有一个名为 "Gators" 和 category_id 11 的子类别。在管理面板中,您会看到类似:
Shoes > Gators
category_path
table 会有这样的行:
+-------------+---------+-------+
| category_id | path_id | level |
+-------------+---------+-------+
| 11 | 7 | 0 |
| 11 | 11 | 1 |
+-------------+---------+-------+
path_id 等于 category_id 的行告诉您该类别有多少层级。其他行显示它是 parents 及其各自的级别。
我无法理解在 opencart 中有 category_path table 的概念。任何opencart专家都可以用scenario/example解释一下吗?
category_path
table 存储与类别层次结构相关的数据。例如,假设您有顶级类别 "Shoes" 和 category_id 7。"Shoes" 有一个名为 "Gators" 和 category_id 11 的子类别。在管理面板中,您会看到类似:
Shoes > Gators
category_path
table 会有这样的行:
+-------------+---------+-------+
| category_id | path_id | level |
+-------------+---------+-------+
| 11 | 7 | 0 |
| 11 | 11 | 1 |
+-------------+---------+-------+
path_id 等于 category_id 的行告诉您该类别有多少层级。其他行显示它是 parents 及其各自的级别。