如果我知道简单的产品ID以及父产品ID,我怎样才能获得简单的产品(可配置的Parent
子项)选项(例如:color = red
)?
我是Magento的新手,我真的需要一些建议。
答案 0 :(得分:3)
// load configurable product
$product = Mage::getModel('catalog/product')->load($productId);
// get simple produts' ids
$childIds = Mage::getModel('catalog/product_type_configurable')->getChildrenIds($product->getId());
// get simple products
$childProducts = Mage::getModel('catalog/product_type_configurable')
->getUsedProducts(null,$product);
// get configurable options
$productAttributeOptions = $product->getTypeInstance(true)->getConfigurableAttributesAsArray($product);
$attributeOptions = array();
foreach ($productAttributeOptions as $productAttribute) {
foreach ($productAttribute['values'] as $attribute) {
$attributeOptions[$productAttribute['label']][$attribute['value_index']] = $attribute['store_label'];
}
}