Tornado POST请求无效

时间:2014-12-12 21:07:46

标签: python post tornado

我从Tornado服务器文档中获取了以下代码,并尝试尝试但是我不断收到错误

  

对象没有属性'get_body_argument'

class MyFormHandler(RequestHandler):
def get(self):
    self.write('<html><body><form action="/myform" method="POST">'
               '<input type="text" name="message">'
               '<input type="submit" value="Submit">'
               '</form></body></html>')

def post(self):
    self.set_header("Content-Type", "text/plain")
    self.write("You wrote " + self.get_body_argument("message"))

任何帮助表示感谢。

1 个答案:

答案 0 :(得分:0)

所有需要的是我的Tornado安装必须升级。