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.
我是 magento 的新手。如何通过传递登录电子邮件 ID 加载客户集合以检索性别值?
谢谢。
Praksah
Afaik,Magento 没有明确的客户电子邮件 ID,只有电子邮件地址。
要检索给定电子邮件地址的性别,您可以使用:
$oCustomer = Mage::getModel('customer/customer') ->setWebsiteId(1) ->loadByEmail('example@example.com'); var_dump($oCustomer->getGender());
setWebsiteId(1)只有在网站范围内运行时才需要该部分。
setWebsiteId(1)