當我運行以下兩行代碼時,返回值爲161.現在,如果我通過customer_eav
挖掘,我會看到161涉及attribute_id
477,然後如果我深入挖掘customer_entity_varchar
我找到一行field['attribute_id']=477
,價值是美元。我怎樣才能使用Magento的模型/方法這個屬性字符串值...如何獲得客戶自定義屬性值
$customer = $session->getCustomer();
$attributes = $customer->getDefaultCurrency(); // returns 161... not USD
我很抱歉,但...什麼? – Erik
您可以創建客戶屬性,他們填充客戶的eav表...您可以使用magic methog getAttributeName()獲取客戶屬性,但它會返回一個外部ID代碼... – mprototype