I am trying to get the Lastly added Quote Item using "checkout/session".

By I don't know, how to get the last added Item. Hence I have product_id.

I believe instead of loading the collection and all, there would be some function. Can anyone help me out?

有帮助吗?

解决方案

try with this. you can use getItemByProduct() method to get quote item from quote using product.

/** @var \Magento\Quote\Model\Quote\Item $item */
$item = $this->_checkoutSession->getQuote()->getItemByProduct($product); // pass the product object

$itemId = $item->getId();

其他提示

You can get last quoteId from checkout session...then load quote model to get quote item match with product_id what you want from quote id

protected $checkoutSession;

public function __construct(
     \Magento\Checkout\Model\Session $checkoutSession
){
     $this->checkoutSession = $checkoutSession;
}
public function execute(){
     $quoteId = $this->checkoutSession->getLastQuoteId();
}
许可以下: CC-BY-SA归因
scroll top