答案 0 :(得分:0)
这可能是由于根类别ID引起的,请查看以下情况
在Magento中,根类别ID硬编码在类 Magento \ Catalog \ Model \ Category 中,在第58行
/**
* Id of root category
*/
const ROOT_CATEGORY_ID = 0;
/**
* Id of category tree root
*/
const TREE_ROOT_ID = 1;
因此,请确保您没有删除根目录(如果已删除)并创建了新的根目录,则必须在上述类中设置该目录ID,就像新的根目录ID为 3 。
/**
* Id of root category
*/
const ROOT_CATEGORY_ID = 3;
/**
* Id of category tree root
*/
const TREE_ROOT_ID = 3;