1
我目前正在使用python中的http服務器。我已經Subclassed BaseHttpRequestHandler處理get/post請求。按照文件,BaseHttpRequestHandler有一個實例變量的路徑,但我如何獲得完整的請求URL如何在python中獲取絕對url
例http://www.cnn.com/index.html
Class handler(BaseHTTPRequestHandler):
def do_GET(self):
# This gives me /index.html
print self.path
但是,有沒有方法可以讓我得到充分的網址?
您可以將路徑添加到您的域名嗎? –