I need to create a form in google app engine for my user to key in information and the information need to be save in the datastore? So how do I do it?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your question is a bit weak, but I’ll try and help you out. I will go step by step:
1/ need to create a form.
My guess is: you are talking about a HTML form to submit data to your application. this has nothing to do with app engine you just need to create a standar HTML page with a form and the fields you would like to store onto the data store, as follow:
Basically here I just created a simple form with one input “text” field and a Submit button to send out the “action” paramenter using the “method” parameter. For more information about forms, please take a look at: http://www.w3schools.com/html/html_forms.asp
2/ information need to be save in the datastore.
To make this happen you need to do a couple of this:
Please take your time and read up the getting started guide: http://code.google.com/appengine/docs/python/gettingstarted/ this will clear out your doubts and give you a better understanding on how to build applications on App Engine.
Best,
Jose Montes de Oca