我正试图从Django视图重定向到另一个,就像这样
url = reverse("enterOTP",args=(), kwargs={"status": status})
def enterOTP(request, *args, **kwargs):
form = OTP()
return render(request,"enterotp.html", {"form":form, "status":status})
这是我的URLconf
url(r'enterotp/(?P<status>[-\w]+)/$', 'FlowSimulator.views.enterOTP', name = "enterOTP")
我一直收到NoReverseMatch错误。我做错了什么?