class blog:
def GET(self):
return 'blog method'
def POST(self):
return 'blog post method'
HTTP协议支持四种请求方式,分别是 GET POST PUT DELETE,
当浏览器发送 POST 请求的时候,web.py 就调用相应的 POST 方法。
下载个postman,以post发送请求就行