Magento:获取 EAV 属性选项/选择的值

发布于 2024-11-19 16:48:47 字数 382 浏览 3 评论 0原文

我有一个 Mage_Customer_Model_Customer 对象并运行以下代码:

$customer->loadByEmail($customer->getEmail());
$customer->getGender();  //returns the EAV attribute option_id's of 1 or 2

我正在尝试获取这些 option_id 的 eav_attribute_option_value.value,即单词“男性”或单词“女性”

我不知道如何执行此操作并花费了相当多的时间调试帐户表单选择小部件的时间没有成功。我也很好奇你是怎么想出来的。

预先感谢

真诚的, 疲惫的开发者

I Have an object of Mage_Customer_Model_Customer and ran the following code:

$customer->loadByEmail($customer->getEmail());
$customer->getGender();  //returns the EAV attribute option_id's of 1 or 2

I am trying to get the eav_attribute_option_value.value of those option_id's which is the word "Male" or the word "Female"

I am not sure how to do this and spent quite a bit of time debugging the account form select widget with no success. I am also curious on how you figured this out.

Thanks in advance

Sincerly,
Tired Dev

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九八野马 2024-11-26 16:48:48
$attributeOptions = $customer->getSource()->getAllOptions(false);
echo "<pre>"; print_r($attributeOptions); echo "</pre>";

http://blog.chapagain.com。 np/magento-how-to-get-attribute-name-and-value/

编辑:来自链接:

$entityType = Mage::getModel('eav/config')->getEntityType('invoice');
$entityTypeId = $entityType->getEntityTypeId();

$attribute = Mage::getResourceModel('eav/entity_attribute_collection')
                ->setCodeFilter('order_id')
                ->setEntityTypeFilter($entityTypeId)
                ->getFirstItem();
$attributeOptions = $customer->getSource()->getAllOptions(false);
echo "<pre>"; print_r($attributeOptions); echo "</pre>";

http://blog.chapagain.com.np/magento-how-to-get-attribute-name-and-value/

EDIT: From Link:

$entityType = Mage::getModel('eav/config')->getEntityType('invoice');
$entityTypeId = $entityType->getEntityTypeId();

$attribute = Mage::getResourceModel('eav/entity_attribute_collection')
                ->setCodeFilter('order_id')
                ->setEntityTypeFilter($entityTypeId)
                ->getFirstItem();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文