如何获得产品magento2的价格?
如何使用自定义代码在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无法正常工作。 例如 我有VIP会员卡(customer_group)我想向公众展示分级价格VIP会员卡未设置所有群组