如何访问调用此方法的请求的 http header ?
class GetDBVersion(webapp2.RequestHandler):
def get(self):
# writes out db version
在 main.py 中
app = webapp2.WSGIApplication([
('/version', GetDBVersion
# and more methods
最佳答案
在类中使用 webapp2.RequestHandler 执行此操作。
它会给你一个标题的字典。
关于python - 如何在 Google App Engine webapp2 requesthandler 中获取 HTTP header ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16536690/