我有一个带有id参数的first_view,还有一个在解释一些代码后重定向到first_view的second_view 。
视图.py:
def first_view(request, id):
#do something
return render(request, 'sometemplate.html')
def second_view(request, id):
#do something
return redirect('first_view', id=id)
当我尝试通过second_view时,我收到此错误:
未找到“first_view”的反向。
网址.py:
path('first_view/<int:pnr_id>/', views.first_view, name='first_view'),
path('second_view/<int:pnr_id>/', views.second_view, name='second_view'),
我也尝试过这些语法进行重定向:
return redirect('first_view', id)
return redirect('first_view', args=[id])
return redirect('first_view', args=[id=id])
return redirect(first_view(id=id))
return redirect(first_view(id))
return redirect(first_view(request=request,id=id))
return redirect(first_view(request,id))
没有任何作用!任何支持将不胜感激。