Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialWelby Obeng
20,340 Pointsyou get data on the top and set data on save, make sense....why do you get data and update data in save function?
you get data on the top and set data on save function, make sense....why do you get data and update data in save function?
3 Answers
Kenneth Love
Treehouse Guest TeacherWe want to make sure that we're updating the existing saved data, not just blindly overwriting it, especially if some of the old data isn't in the new data.
Welby Obeng
20,340 PointsCan you give me some examples? I'm a little confused
Kenneth Love
Treehouse Guest TeacherHmm, you know what? After playing with the final version for a bit, we don't have to do the update. You can just do data = dict(request.form.items())
and set that into the cookie. I think an earlier version of the code (when I was first writing the course) needed the .update()
.
That said, I can see this getting more complicated if you keep messing with it to where the .update()
would be useful. I'd probably leave it in, myself.
Welby Obeng
20,340 PointsThanks