Search code examples
pythondjangosessioncart

(DJANGO) How to save session for user shopping cart in to restore session in next login?


guys, I create a shopping cart in Django with using session, but after logout, it removes my cart, and also I cannot see my cart on another computer . so please help me


Solution

  • You cannot and should not attach your cart to a session for the following reasons.

    1. sessions expire, so whats happens to you cart? (gone with the wind...)

    2. Django creates new sessions per site visitor. This implies that two different devices can never have the same session

    You should consider attaching carts to users instead.