在html页面上形成POST方法

时间:2013-04-01 16:00:22

标签: javascript python html ajax google-app-engine

我想在google app引擎的html页面中使用Form post方法或ajax post方法,但似乎没有任何事情发生。

class Email(webapp2.RequestHandler):   
    def post(self):
        '''
        Post method to handle Email requests.
        '''
        print self.request
        self.response.write(self.request)

app = webapp2.WSGIApplication([('/', MainPage),("/email",Email)],
                              debug=True)

<form method="post" action="http://localhost:8080/email" >
<p>
    <label for="byour_name">Your name</label><input type="text" name="byour_name" value="" id="byour_name">
</p>
<p>
    <label for="byour_email_address">Your email address</label><input type="text" name="byour_email_address" value="" id="byour_email_address">
</p>
<p>
    What's on your mind?<br>
    <textarea name="Message" rows="10" cols="25">
    </textarea>
</p>
<p>
    <input type="submit" value="Send it!">
</p>

对此有所帮助我还尝试过wireshark来检查网络活动,但没有发生任何事情......

1 个答案:

答案 0 :(得分:0)

我发现了我的问题。我要删除我之前使用的下面提到的行

$("form").bind("submit",function(event){
                                    event.preventDefault();

我一删除它。它工作..