Shopping Cart Page:id
From 'Product' page, once clikc the 'add' button, it will go to 'cart' page. According to product number(id), it will go to corresponding page.
It can be done by using parameter which is 'req.params.id'.
ex) If you click product1>add,
Design cart, cart page
Product #id : The Number of product #id
The number of product#id means cookie.
소스코드 설명 : 쿠키가 증가하는 원리 최초 방문시 쿠키에 'cart'라는 데이터가 없으면 cart라는 객체를 생성한다. 최초 방문시 cart[id]에 값을 0으로 할당한다. 재방문 시, cart[id] 값을 1씩 증가한다.
Last updated