Hi Guys,
I just want to understand the addcart working in AEM, basically the code written in product.jsp initiates the process of adding items to cart but I'm confused at this code:
<form class="product-form" method="POST" action="<%= xssAPI.getValidHref(addToCartUrl) %>"
onsubmit="return validateProductQuantity('<%= productQuantityId %>') && trackCartAdd(this)">
If you can see the action here, it points to your_page..commerce.addcartentry.html , but I couldn't find any page which resembles to such URL?
Could you please let me know after submitting this form how the control flow happens and where the compiler is pointing when it says .commerce.addcartentry.html?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
if you want to see how a URL is resolved, have a look in recent requests from the Felix console. This explains how a request is resolved.
Clear the recent requests and then hit your URL.
You should also become familiar with the Sling cheat sheet[1]
Regards,
Opkar
[1] https://docs.adobe.com/docs/en/aem/6-1/develop/platform/sling-cheatsheet.html
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi,
if you want to see how a URL is resolved, have a look in recent requests from the Felix console. This explains how a request is resolved.
Clear the recent requests and then hit your URL.
You should also become familiar with the Sling cheat sheet[1]
Regards,
Opkar
[1] https://docs.adobe.com/docs/en/aem/6-1/develop/platform/sling-cheatsheet.html
Views
Replies
Total Likes