我们正在将Apache 2.4与mod_python一起使用,这是用于重写某些HTML输出的输出过滤器的。我们目前正在JS中使用document.cookie设置cookie,但这并不是最佳选择。理想情况下,我们希望通过标题设置cookie。我们尝试使用filter.req.headers_out['SetCookie']
和Cookie.add_cookie
,但无济于事。
这甚至可能吗?如果没有,还有什么更好的选择?我们将Apache 2.4和mod_python用作唯一选择。
可用的Apache模块:
已加载的模块:
我当前如何尝试设置cookie(在开发环境中):
def add_cookie(req, name, value, domain=None, expires=None):
"""Adds a cookie
Arguments:
req -- the request
name -- the cookie name
value -- the cookie value
domain -- (optional) the domain the cookie is applicable to
expires -- (optional) the time in minutes the cookie is set to expire, defaults to current session
"""
cookie = Cookie.Cookie(name, value)
# Always set the path to the root
cookie.path = '/'
# Set domain if present
if domain is not None:
cookie.domain = domain
# Set expires if present
if expires is not None:
expires = int(expires)
cookie.expires = time.time() + (60 * expires)
# Add a freshly-baked cookie
Cookie.add_cookie(req, cookie)
答案 0 :(得分:0)
我自己弄清楚了。简短的版本是,可以。之前对我不起作用的原因是我设置Cookie的位置不正确。我从HTML处理区域(无论如何它都不属于该区域)中移出了该位,并将其直接放在outputfilter
方法中。
我希望这对某人有帮助。