gpt4 book ai didi

class - Magento:从 eav_attribute_option_value 检索数据的类

转载 作者:行者123 更新时间:2023-12-04 17:38:52 25 4
gpt4 key购买 nike

我在 Magento 1.4.0.1 安装的 eav_attribute_option_value 中有以下数据。

value_id  |  option_id  |  store_id  |  value
-------------------------------------------------------------------------
35 | 7 | 0 | Levertijd 1 tot 3 werkdagen
36 | 6 | 0 | Levertijd 4 tot 10 werkdagen
37 | 5 | 0 | Langer dan 11 werkdagen
38 | 4 | 0 | Levertijd onbekend
39 | 3 | 0 | Pre-Order

我在 var 中有 option_id 的数据,比如 $delivery(示例 = 6)。我想使用现有的 Magento 类来检索数据。所以输出数据应该是“Levertijd 4 tot 10 werkdagen”。

有谁知道 Magento 中是否有我可以使用的现有功能?

提前致谢。

最佳答案

您可以使用 $option_id 直接加载属性选项值实体

$eav_attribute_option_value = Mage::getModel('eav/entity_attribute_option')
->getCollection()
->setStoreFilter()
->join('attribute', 'attribute.attribute_id=main_table.attribute_id', 'attribute_code')
->addFieldToFilter('main_table.option_id', array('eq' => $option_id))
->getFirstItem();
然后访问它的值
$eav_attribute_option_value->getValue()

关于class - Magento:从 eav_attribute_option_value 检索数据的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9456932/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com