我正在尝试将字典传递给 HttpRedirect 或 HttpFound 方法,以便我可以在重定向的 url 处使用该字典。
我正在使用路由模块进行 url 连接,并使用cherrypy 和 webob 进行 Https。
我想这样做 return HttpRedirect(location=location, mydict)
其中 HttpRedirect 扩展了 webob 的 HttpFound
我正在尝试将字典传递给 HttpRedirect 或 HttpFound 方法,以便我可以在重定向的 url 处使用该字典。
我正在使用路由模块进行 url 连接,并使用cherrypy 和 webob 进行 Https。
我想这样做 return HttpRedirect(location=location, mydict)
其中 HttpRedirect 扩展了 webob 的 HttpFound
你有(至少)两种方式
HttpRedirect(mydict, location=location)
or HttpRedirect(httpdict=mydict, location=location)
: 明确地将字典作为位置参数或关键字参数传递,然后访问字典HttpRedirect(location=location, **kargs)
,然后传递mydict
do HttpRedirect(location=location, **mydic)
。有关位置和关键字参数的简短教程,请阅读此处