django redirect to view

前端 未结 3 388
误落风尘
误落风尘 2021-01-03 19:19

I have one view that I want to do some stuff in and then redirect to another view with a success message. The signature of the method that I want to redirect to is

3条回答
  •  执念已碎
    2021-01-03 19:49

    You haven't given your URL a name, so you need to use the whole path to the view function. Plus, that URL doesn't take errorMessage or successMessage parameters, so putting them into the reverse call will fail. This is what you want:

    return redirect('quizzes.views.quizView', quizNumber=quizNumber)
    

提交回复
热议问题