0

我需要的是从 .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,并添加与该类别相关的子类别?

提前致谢

4

1 回答 1

2

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

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

子类别保存后(因此有一个ID),该ID会在save()调用后自动附加到路径属性中。
Magento 还会自动为您设置 parent_id 和 level 属性。

于 2012-07-04T13:42:25.833 回答