类别未在“管理产品”编辑页面Magento 2.2.2中显示

时间:2018-10-03 03:11:30

标签: magento2

Magento版本2.2.2

复制步骤 目录>产品>添加新产品>类别

预期结果 类别列表

实际结果 空类别

enter image description here

1 个答案:

答案 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;