def POST(self) 什么時(shí)候返回它呢
class blog:
? ? def GET(self):
? ? ? ? return 'blog method'
? ? def POST(self):
? ? ? ? return 'blog post method'
class blog:
? ? def GET(self):
? ? ? ? return 'blog method'
? ? def POST(self):
? ? ? ? return 'blog post method'
2017-04-20
舉報(bào)
2017-04-22
HTTP協(xié)議支持四種請(qǐng)求方式,分別是 GET POST PUT DELETE,
當(dāng)瀏覽器發(fā)送 POST 請(qǐng)求的時(shí)候,web.py 就調(diào)用相應(yīng)的 POST 方法。
2018-06-22
下載個(gè)postman,以post發(fā)送請(qǐng)求就行