如何使用自定义代码在Magento 2中获得产品的分级价格?
这是我的代码
public function getProductCollection()
{
$collection = $this->_productCollectionFactory->create();
$collection->addAttributeToSelect('*');
$collection->setOrder('created_at', 'DESC');
// $collection->setPageSize(3); // fetching only 3 products
return $collection;
}
和我的.phtml中的调用函数
$productCollection = $block->getProductCollection();
$productCollection->setPageSize(2);
foreach ($productCollection as $product) {
echo $product->getName();
print_r($product->getTierPrice());
echo getName,getPrice,getSpecial价格有效
但是getTierPrice无法正常工作。