我一直在尝试获取请求网址,如下所示
import webapp2
class MainPage(webapp2.RequestHandler):
def get(self):
print self.request.get('url')
app = webapp2.WSGIApplication([('/.*', MainPage)], debug=True)
当请求是
http://localhost:8080/index.html
它给了我类似的东西
Status: 200 Content-Type: text/html; charset=utf-8 Cache-Control: no-cache Content-Length: 70
我需要得到的是
index.html
编辑:以便我可以检查字符串并相应地显示正确的 html/模板文件。
我已经检查了请求文档并尝试了许多替代方法,但我似乎找不到解决方案。我对网络开发很陌生。我错过了什么?