post方法返回都是none
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
import web
urls = (
'/index','index',
'/blog/\d','blog',
'/(.*)', 'hello'
)
app = web.application(urls, globals())
class index:
def GET(self):
query=web.input()
return query
class blog:
def POST(self):
data=web.input()
return data
class hello:
def GET(self, name):
return open(r'new2.html').read()
if __name__ == "__main__":
app.run()
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
<!DOCTYPE HTML>
<html><head meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>小型demo</title>
</head>
<body>
<h1>POST</h1>
<form action="/blog/123" method="POST">
<input type="text" name="id" value=""/>
<input type="password" name="password" value=""/>
<input type="submit" value="submit"/>
</form>
</body>
</html>
上面分别是html和python的源码,网页返回的都是none