1

我正在尝试将字典传递给 HttpRedirect 或 HttpFound 方法,以便我可以在重定向的 url 处使用该字典。

我正在使用路由模块进行 url 连接,并使用cherrypy 和 webob 进行 Https。

我想这样做 return HttpRedirect(location=location, mydict)

其中 HttpRedirect 扩展了 webob 的 HttpFound

4

1 回答 1

0

你有(至少)两种方式

  1. HttpRedirect(mydict, location=location)or HttpRedirect(httpdict=mydict, location=location): 明确地将字典作为位置参数或关键字参数传递,然后访问字典
  2. 使用更抽象和更灵活的方法来实现类似这样的东西HttpRedirect(location=location, **kargs),然后传递mydictdo HttpRedirect(location=location, **mydic)

有关位置和关键字参数的简短教程,请阅读此处

于 2013-02-04T09:22:06.187 回答