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 trialGuled Ahmed
12,806 PointsWhere are the key's coming from?
I get how the values arise, but where are the keys for the dictionary being grabbed from? Is it from the 'name' attribute in an input tag, or other attributes associated with objects in a form?
1 Answer
Cory Madden
7,120 PointsYes, it comes from the name attribute of an input tag. So submitting a form such as:
<form action="/save" method="POST">
<label for="name">Name:</label>
<input name="name" type="text">
<input type="submit" value="submit">
</form>
Will send a request with the "name" key associated with whatever value you put into the input field.