添加新类别和子类别 - Magento


Adding new categories and subcategories - Magento

我需要的是.csv文件中添加新的类别和子类别。我可以创建新的根类别,但我不知道如何制作子类别:

$category = Mage::getModel('catalog/category');
$category->setStoreId(0);
  $rootCategory['name'] = 'Reserved';
  $rootCategory['path'] = "1"; // for root category
  $rootCategory['display_mode'] = "PRODUCTS_AND_PAGE";
  $rootCategory['is_active'] = 1;
  $category->addData($rootCategory);
$parentCategory= $category; // doesn't work, but i want here to get this (root) category id
  try {
    $category->save();
  }
  catch (Exception $e){
    echo $e->getMessage();
  }

CSV 文件的格式如下:

root_cat_id;subcat_id;subcat_name;subsubcat_id;subsubcat_name;
ex.
1;2;Animal;3;Dog;

如何获取刚刚添加的类别的ID,并添加与此类别相关的子类别?

提前致谢

若要使一个类别成为另一个类别的子类别,请在保存之前将路径设置为父类别路径。

$childCategory->setPath($parentCategory->getPath())

保存子类别(因此具有 ID)后,调用 save() 后,该 ID 将自动附加到 path 属性中。
Magento还会自动为您设置parent_id和级别属性。