第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Django:reverse_lazy()與通用視圖

Django:reverse_lazy()與通用視圖

ITMISS 2022-09-13 15:17:29
我有兩個通用視圖(“創(chuàng)建視圖”和“詳細信息視圖”)。在我的創(chuàng)建視圖中,保存我的窗體后,我想重定向到詳細信息視圖以顯示我新創(chuàng)建的對象。但是發(fā)生了一個錯誤:Reverse for 'questions.views.DisplayQuestions' not found. 'questions.views.DisplayQuestions' is not a valid view function or pattern name.如何通過reverse_lazy調(diào)用我的詳細信息視圖?.視圖:class DisplayQuestions(ListView):    model = Question    context_object_name = "all_questions"    template_name = "questions/home.html"    def get_queryset(self):        return Question.objects.order_by(self.kwargs['display_type'])@method_decorator(login_required, name='dispatch')class CreateQuestion(CreateView):    model = Question    template_name = 'questions/nouveau.html'    form_class = QuestionForm    def get_success_url(self):        return reverse_lazy(DisplayQuestion) # <-- This doesn't work !!!    def form_valid(self, form):        self.object = form.save(commit=False)        self.object.profil = self.request.user.profil        self.object = form.save()        return HttpResponseRedirect(self.get_success_url()).網(wǎng)址:urlpatterns = [    url(r'^nouveau$', views.CreateQuestion.as_view()),    url(r'(?P<display_type>\w+)', views.DisplayQuestions.as_view()),].形式:class QuestionForm(forms.ModelForm):    class Meta:        model = Question        fields = ('question','categorie',)
查看完整描述

1 回答

?
SMILET

TA貢獻1796條經(jīng)驗 獲得超4個贊

您應該將配置中的每個URL命名為:


urlpatterns = [

    url(r'^nouveau$', views.CreateQuestion.as_view(), name='create-question'),

    url(r'(?P<display_type>\w+)', views.DisplayQuestions.as_view(), name='display-question'),

]

然后訪問它,


return reverse_lazy('display-question', kwargs={'display_type': 'your-display-type-value'})


查看完整回答
反對 回復 2022-09-13
  • 1 回答
  • 0 關(guān)注
  • 164 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號