这是我的示例代码。
class PDF(tornado.web.RequestHandler):
def get(self):
self.set_header('Content-Type', 'text/plain')
self.set_header('Content-Disposition', 'attachment; filename="export.txt"')
self.write('sdsadjs')
class RealtimeHandler(tornado.websocket.WebSocketHandler):
pdf = PDF() ## Here I intialized the obeject
当我初始化对象时,它会引发以下错误。
TypeError: __init__() takes exactly 3 arguments (1 given)