I have made a simple guestbook where I have a <textarea>
and a submit button
.
When the submit button is clicked multiple times in short period of time, the same data will go in to the database multiple times. How do I prevent this?
Here is the code:
def post(self):
greeting = Greeting(parent=guestbook_key)
greeting.content = self.request.get('content')
greeting.put()
self.redirect('/')
Here is the picture so you know what I am talking about: http://i.gyazo.com/87344b79b1eda82928385a44158d7d0b.png