นี่คือคำตอบ
เหตุใดจึงใช้คลาสพร็อกซีในกรณีพิเศษนั้น
หากคุณดูโค้ดด้านล่างซึ่งเขียนขึ้นสำหรับคลาส "SetConversionValueObserver" หาก Google adwards ไม่ได้ใช้งาน "ส่งคืน" และหากไม่มีคำสั่ง "ส่งคืน" หมายความว่าวัตถุชุดคำสั่งซื้อจะถูกสร้างขึ้นเฉพาะเมื่อมีรหัสคำสั่งซื้อและ Google adwords ทำงานอยู่ หากเราฉีดคลาสคอลเลกชันการสั่งซื้อจริงแล้วผู้จัดการวัตถุสร้างวัตถุคอลเลกชันด้วยวัตถุคลาสแม่โดยไม่ทราบว่า Google adwords ไม่ได้ใช้งานและที่ประสบความสำเร็จในการสั่งซื้อหน้าช้าลง ดังนั้นควรสร้างออบเจ็กต์ตามต้องการที่ใช้พร็อกซีให้ดีขึ้น /vendor/magento/module-google-adwords/Observer/SetConversionValueObserver.php
/**
* Set base grand total of order to registry
*
* @param \Magento\Framework\Event\Observer $observer
* @return \Magento\GoogleAdwords\Observer\SetConversionValueObserver
*/
public function execute(\Magento\Framework\Event\Observer $observer)
{
if (!($this->_helper->isGoogleAdwordsActive() && $this->_helper->isDynamicConversionValue())) {
return $this;
}
$orderIds = $observer->getEvent()->getOrderIds();
if (!$orderIds || !is_array($orderIds)) {
return $this;
}
$this->_collection->addFieldToFilter('entity_id', ['in' => $orderIds]);
$conversionValue = 0;
/** @var $order \Magento\Sales\Model\Order */
foreach ($this->_collection as $order) {
$conversionValue += $order->getBaseGrandTotal();
}
$this->_registry->register(
\Magento\GoogleAdwords\Helper\Data::CONVERSION_VALUE_REGISTRY_NAME,
$conversionValue
);
return $this;
}
โดยทั่วไปเมื่อใดควรใช้คลาสพร็อกซี
- Inject Proxy class เมื่อคุณรู้สึกว่าการสร้างวัตถุจะมีราคาแพงและคอนสตรัคเตอร์ของคลาสนั้นใช้ทรัพยากรมาก - เมื่อคุณไม่ต้องการมีผลกระทบต่อประสิทธิภาพที่ไม่จำเป็นเนื่องจากการสร้างวัตถุ - เมื่อคุณรู้สึกว่าการสร้างวัตถุควรเกิดขึ้นเมื่อคุณเรียกใช้เมธอดเฉพาะในเงื่อนไขเฉพาะไม่เสมอไป ตัวอย่างเช่นตัวสร้างเค้าโครงเป็นแบบใช้ทรัพยากรมาก
ตัวสร้างเค้าโครงที่แท้จริงเทียบกับรูปแบบ / พร็อกซี
public function __construct(
Layout\ProcessorFactory $processorFactory,
ManagerInterface $eventManager,
Layout\Data\Structure $structure,
MessageManagerInterface $messageManager,
Design\Theme\ResolverInterface $themeResolver,
Layout\ReaderPool $readerPool,
Layout\GeneratorPool $generatorPool,
FrontendInterface $cache,
Layout\Reader\ContextFactory $readerContextFactory,
Layout\Generator\ContextFactory $generatorContextFactory,
AppState $appState,
Logger $logger,
$cacheable = true,
SerializerInterface $serializer = null
) {
$this->_elementClass = \Magento\Framework\View\Layout\Element::class;
$this->_renderingOutput = new \Magento\Framework\DataObject();
$this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class);
$this->_processorFactory = $processorFactory;
$this->_eventManager = $eventManager;
$this->structure = $structure;
$this->messageManager = $messageManager;
$this->themeResolver = $themeResolver;
$this->readerPool = $readerPool;
$this->generatorPool = $generatorPool;
$this->cacheable = $cacheable;
$this->cache = $cache;
$this->readerContextFactory = $readerContextFactory;
$this->generatorContextFactory = $generatorContextFactory;
$this->appState = $appState;
$this->logger = $logger;
}
ตัวสร้างพร็อกซีลองดูไม่มีตัวสร้างพาเรนต์ที่เรียกว่าเช่นเดียวกับเพิ่งผ่านชื่อคลาสเลย์เอาต์เพื่อให้การสร้างวัตถุจริงเกิดขึ้นเมื่อเมธอดถูกเรียก
/**
* Proxy constructor
*
* @param \Magento\Framework\ObjectManagerInterface $objectManager
* @param string $instanceName
* @param bool $shared
*/
public function __construct(
\Magento\Framework\ObjectManagerInterface $objectManager,
$instanceName = \Magento\Framework\View\Layout::class,
$shared = true
) {
$this->_objectManager = $objectManager;
$this->_instanceName = $instanceName;
$this->_isShared = $shared;
}
คลาสพร็อกซีมีวิธีสร้างวัตถุตามต้องการ _subject เป็นวัตถุของคลาสที่ส่งผ่าน
/**
* Get proxied instance
*
* @return \Magento\Framework\View\Layout
*/
protected function _getSubject()
{
if (!$this->_subject) {
$this->_subject = true === $this->_isShared
? $this->_objectManager->get($this->_instanceName)
: $this->_objectManager->create($this->_instanceName);
}
return $this->_subject;
}
และวิธีการที่เรียกว่าใช้ _subject
/**
* {@inheritdoc}
*/
public function setGeneratorPool(\Magento\Framework\View\Layout\GeneratorPool $generatorPool)
{
return $this->_getSubject()->setGeneratorPool($generatorPool);
}