Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RequestHandler着信用のオブジェクトがありますpost()。リクエストを行っているクライアントのIPを見つけるにはどうすればよいですか?私はほとんどRequestHandlerのメソッドとプロパティを閲覧しましたが、何かを見逃しているようです。
RequestHandler
post()
RequestHandler.request.remote_ip(RequestHandler のインスタンスから)
RequestHandler.request.remote_ip
次のように応答を検査できます。
... class MainHandler(tornado.web.RequestHandler): def get(self): self.write(repr(self.request)) ...