วิธีการได้รับหนังสือที่ขายดีที่สุดและดูสินค้าในหน้าแรกของวีโอไอพี 2 ?
เราต้องแสดงหนังสือที่ขายดีที่สุดและรายการสินค้าที่มีคนดูมากที่สุดในแถบเลื่อนโฮมเพจใน magento 2
วิธีการได้รับหนังสือที่ขายดีที่สุดและดูสินค้าในหน้าแรกของวีโอไอพี 2 ?
เราต้องแสดงหนังสือที่ขายดีที่สุดและรายการสินค้าที่มีคนดูมากที่สุดในแถบเลื่อนโฮมเพจใน magento 2
คำตอบ:
สำหรับหนังสือที่ขายดีสร้างบล็อกใน__construct
รับตัวอย่างของ
\Magento\Sales\Model\ResourceModel\Report\Bestsellers\CollectionFactory $collectionFactory,
อดีต
<?php
namespace Sugarcode\Test\Block;
class Test extends \Magento\Framework\View\Element\Template
{
protected $_coreRegistry = null;
protected $_collectionFactory;
public function __construct(
\Magento\Backend\Block\Template\Context $context,
\Magento\Framework\Registry $registry,
\Magento\Sales\Model\ResourceModel\Report\Bestsellers\CollectionFactory $collectionFactory,
array $data = []
) {
$this->_collectionFactory = $collectionFactory;
$this->_coreRegistry = $registry;
parent::__construct($context, $data);
}
public function _prepareLayout()
{
return parent::_prepareLayout();
}
public function getBestSellerData()
{
$collection = $this->_collectionFactory->create()->setModel(
'Magento\Catalog\Model\Product'
);
return $collection;
}
}
สำหรับการดูล่าสุดคุณสามารถใช้วิดเจ็ตจากด้านผู้ดูแลระบบหรือมิฉะนั้นคุณสามารถเขียนบล็อกที่กำหนดเองด้วย \Magento\Reports\Model\ResourceModel\Product\CollectionFactory $productsFactory
ดูที่:
vendor\magento\module-backend\Block\Dashboard\Tab\Products\Viewed.php
and
vendor\magento\module-backend\Block\Dashboard\Tab\Products\Ordered.php
ใช้รหัสต่อไปนี้เพื่อดูสินค้าขายดีรวมถึงผลิตภัณฑ์ที่มีผู้ชมมากที่สุดใน Magento 2 Slider ของคุณ
<?php $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$productCollection = $objectManager->create('Magento\Reports\Model\ResourceModel\Report\Collection\Factory');
$collection = $productCollection->create('Magento\Sales\Model\ResourceModel\Report\Bestsellers\Collection'); ?>