質問

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帰属
所属していません magento.stackexchange
scroll top