You could save the items to the DB and then store the ID in session 
(session.cart_id=1) or store the contents right in the session cookie: 
session.cart_items=[{'id':123 ,'qty':1}, {'id':456, 'qty':3}]

Reply via email to