0
このコードと同等のマゼンタ2は何ですか?Mage :: getModel( 'customer/customer') - > loadByEmail()のmagento 2に相当するものは何ですか?あれ?
Mage :: getModel( 'customer/customer') - > loadByEmail();
?
このコードと同等のマゼンタ2は何ですか?Mage :: getModel( 'customer/customer') - > loadByEmail()のmagento 2に相当するものは何ですか?あれ?
Mage :: getModel( 'customer/customer') - > loadByEmail();
?
このコードを使用してください:
<?php
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$customer = $objectManager->get('Magento\Customer\Model\Customer');
$customer->setWebsiteId('1');
$customer->loadByEmail('[email protected]');
?>
ます。また、この試すことができます:あなたの関数内のコードの下
protected $customerCollection;
public function __construct(
...
\Magento\Customer\Model\Customer $customerCollection,
...
)
{
...
$this->customerCollection = $customerCollection;
...
}
使用: -
$customerObj = $this->customerCollection;
$customerObj->setWebsiteId($websiteId);
$customerObj->loadByEmail('[email protected]');
を