Django pass object from view to next for processing
问题 If you have 2 views, the first uses modelform that takes inputted information from the user (date of birth, name, phonenumber, etc), and the second uses this information to create a table. How would you pass the created object in the first view to the next view so you can use it in the second view's template I'd appreciate any help you can share 回答1: One approach is to put the object into a session in your first view, which you could then retrieve from the request.session in the second view.