Goal is to get "name", "mood" variables, and date, into Datastore. All I see worthwhile in Datastore is a crypto looking Entity key and Visitor-name-mood-date Index with no data, despite my submitting web form several times.
Here is form
First Name:
Select
Good
Bad
Fair
Running this in DS Console gives me
ameError: name 'visitor' is not defined
q = Visitor.all()
q = db.GqlQuery("SELECT * FROM Visitor") #in DS Console
results = q.fetch(2)
for p in results:
print "%s" % (p.name)
#DATASTORE v v
class Visitor(db.Model): # index.py
name = db.StringProperty()
mood = db.StringProperty()
date = db.DateTimeProperty(auto_now_add=True)
class Post(webapp.RequestHandler): #yaris
def get(self):
visitor_db = Visitor()
visitor_db.name = self.request.get("name")
visitor_db.mood = self.request.get("mood")
visitor_db.put()
and index.yaml:
indexes: # seems like this is OK
- kind: Visitor
properties:
- name: name
- name: mood
- name: date
direction: asc
Also getting 405 errors in terminal when submitting form.
EDIT: got this working with the following; thanks for help.
class MainPage(webapp.RequestHandler):
def get(self):
self.response.out.write("""<html><body>
<form action="/" method="post">
# form is here
</body></html> """)
name = self.request.get("name")
name = name.capitalize()
mood = self.request.get("mood")
localtime = time.localtime(time.time())
mon = localtime[1] # MONTH
h = localtime[3] # HOUR
# if/elif statements with %s specifiers follow...still in MainPage class v v
> def post(self):
> name = self.request.get("name")
> name = name.capitalize()
> mood = self.request.get("mood")
> info = Visitor(name = name, mood = mood)
> info.put()
> self.redirect("/index.py")
This stores data in Datastore! Now, the only thing I need to fix is to get the form responses to print on the original form page (index.py), in the proper div, which I have float-right next to the form. Instead, the form-submitted responses are appearing on a different, unformatted page. I have played with the self.redirect, and the following, but I need some direction how to implement this or even if I"m the right path, to get form responses to print on the form page, not on a different page:
Created handler
redirectionHandler = urllib2.HTTPRedirectHandler()
# 2 apply the handler to an opener
opener = urllib2.build_opener(redirectionHandler)
# 3. Install the openers
urllib2.install_opener(opener)
request = urllib2.Request("http://*my url*", #commented out data=urllib.urlencode({'key':'value'}))
response = urllib2.urlopen(request)