如何在Magento 2主页中获得畅销书和最受欢迎的产品?
我们必须在magento 2的首页滑块中显示畅销书和查看最多的产品列表。
如何在Magento 2主页中获得畅销书和最受欢迎的产品?
我们必须在magento 2的首页滑块中显示畅销书和查看最多的产品列表。
Answers:
对于畅销书,在__construct
get实例中创建一个块
\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滑块中查看“畅销产品”和“查看最多”的产品。
<?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'); ?>