Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要的比较简单……我需要获取产品页面中已经选择的属性。
更好地解释:我有一个可配置的产品,有两个属性,大小和颜色。当我去购买产品时,我有选择属性的选项,我有一个按钮可以执行一些操作并且需要获取选择的属性。
在更改下拉列表时执行 ajax 调用,该调用将从所选值返回
这将为您提供所有属性选项和值。根据您的要求更改它
$attribute = Mage::getSingleton('eav/config')->getAttribute('catalog_product', 'color'); if ($attribute->usesSource()) { $options = $attribute->getSource()->getAllOptions(false); }
仍然不确定你想要实现什么