在 Django 中传递重定向变量

发布于 2024-11-09 14:07:02 字数 269 浏览 0 评论 0原文

我试图使用重定向函数传递一个变量,但它没有返回任何值。

def one:
    # define location variable here
    return redirect(getting_started_info, location=location)

def getting_started_info(request, location=''):
    location = location
    ...

为什么重定向中的变量没有传递?

I'm trying to pass a variable using the redirect function, but it is returning none.

def one:
    # define location variable here
    return redirect(getting_started_info, location=location)

def getting_started_info(request, location=''):
    location = location
    ...

Why is the variable in the redirect not passing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

椵侞 2024-11-16 14:07:02

请记住,redirect() 并不是直接调用您的视图,它实际上是向客户端浏览器发送 302 Found 状态(301 Moved Permanently 如果您使用 permanent=True) 以及重定向到不同 URL 的指令。在本例中,该 URL 解析为 getting_started_info 视图。

我相信要实现此功能,必须存在一个映射到 getting_started_view 并使用其 location 参数的 urlconf。这很可能通过命名组发生。

来自 django 1.8 文档 条目 redirect( )

参数可能是:

  • 模型:将调用模型的 get_absolute_url() 函数。
  • 视图名称,可能带有参数:urlresolvers.reverse 将用于反向解析名称。
  • 绝对或相对 URL,将按原样用于重定向位置。

Remember that redirect() isn't doing a direct call to your view, it's actually sending the client's browser a 302 Found status (301 Moved Permanently if you use permanent=True) with an instruction to redirect to a different URL. In this case, that URL is one that resolves to the getting_started_info view.

I believe that for this to work, there must exist a urlconf which maps to getting_started_view and which uses its location positional argument. This will most likely occur through named groups.

From the django 1.8 docs entry on redirect():

The arguments could be:

  • A model: the model’s get_absolute_url() function will be called.
  • A view name, possibly with arguments: urlresolvers.reverse will be used to reverse-resolve the name.
  • An absolute or relative URL, which will be used as-is for the redirect location.
挽你眉间 2024-11-16 14:07:02
return HttpResponseRedirect(reverse('getting_started_info', kwargs={'location': location}))
return HttpResponseRedirect(reverse('getting_started_info', kwargs={'location': location}))
中二柚 2024-11-16 14:07:02

您还可以使用会话或 cookie 传递某些变量的值。

you may also pass a value of some variable using sessions or cookie.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文