官方文檔裏提到的 web.ctx.ip 不知道是否是本身沒用明白,獲取的並非訪客IP。web
代碼以下:spa
class huoqu: def GET(self): getRealIP = web.ctx.env.get('HTTP_X_REAL_IP') #getIp = web.ctx.ip getAll = web.ctx.env return getall,getreal
返回的是詳細的請求頭和真實的訪客IP。code