从Magento获取属性选项列表
2022-08-30 20:13:50
我一直在从Magento中获取属性选项,如下所示:
<?php
if ($attribute->usesSource()) {
$options = $attribute->getSource()->getAllOptions(false);
}
?>
它一直工作正常,直到我试图获取内置“color”属性的选项 - 我得到了以下错误:
PHP Fatal error: Call to a member function setAttribute() on a non-object in app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php on line 374
看起来调用失败并导致此错误。有谁知道为什么会发生这种情况,以及我如何获得颜色选项?getSource()
谢谢!