gpt4 book ai didi

python - Django 使用参数重定向 View

转载 作者:行者123 更新时间:2023-12-01 00:32:30 26 4
gpt4 key购买 nike

在我的应用程序中,我有包含以下行的文件 urls.py:

...
path('home/', views.home, name='home'),
path('page/', views.page, name='page'),
....

在我的 view.py 文件中我有两个这样的 View :

def home(request, value=0):
print("value=", value)
return render(request, 'template.html', context)


def page(request):
if bad:
return redirect(reverse('home'), value=1)

是否可以让 View 函数带有参数(如本例中的值),然后使用页面 View 的重定向,根据相同的条件(如 value=1)传递一些值,在本例中,使用格式urls.py 中描述的?无论如何,上面的代码总是打印 value=0。

我能想到的唯一方法是使用我真正想避免的全局变量......

最佳答案

可以,但是需要在URL中添加参数:

path('home/', views.home, name='home1'),
path('home/<b><int:value></b>/', views.home, name='home2'),

然后你需要在重定向本身中传递页面以及 View 的名称,你不应该在这里使用reverse(..):

def page(request):
if bad:
return redirect(<b>'home2'</b>, value=1)

关于python - Django 使用参数重定向 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58068477/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com