_addToCartMulti
How to Use _addToCartMulti
Method
_addToCartMulti
method adds multiple items to the shopping cart in one batch. This method is useful when you need to update the cart with several products or variants simultaneously. It updates the cart in local storage, emits a change event, and optionally performs additional actions for each item added.Usage Steps:
1.
cartItems
, which should be an array of objects. Each object represents a product variant to be added to the cart and must include at least the productId
, variantId
, and quantity
.2.
_addToCartMulti
method with the prepared array of cart items.3.
"cart-changed"
event to notify other parts of the application about the cart update.Example:
cartItems
array contains two items to be added to the cart. Each item includes the productId
, variantId
, and quantity
._addToCartMulti
method is called with this array to update the cart in one batch.Common Use Cases:
1.
2.
3.
"cart-changed"
event to update the UI and other related components, such as updating the cart icon or displaying a notification.Notes:
cartToken
and cartData
in local storage to ensure that the cart state is consistent across different parts of the application."cart-changed"
event after the cart is updated. This event allows other parts of the application to react to the cart changes, such as refreshing the cart display.Modified at 2024-08-20 12:42:22