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.
我想访问X-Appengine-*标题。使用延迟库时这些是否完全隐藏?
X-Appengine-*
[实际上我正在使用烧瓶和werkzeug,如果这很重要的话。]
似乎就这么简单:
from google.appengine.ext import webapp req = webapp.get_request()
我怀疑 OP 想要从运行延迟处理程序的任务中的原始请求(调用 defer() 的请求)访问标头。鉴于延迟处理程序作为单独的请求运行,这些标头会丢失 - 如果您想要它们,您必须在原始请求中获取它们并以某种方式将它们作为参数传递给延迟函数。