导入:
from django.views.generic import CreateView, ListView, UpdateView, DetailView, DeleteView
用过django的人对视图函数并不陌生,generic 的通用视图用法很简单,所以在讲使用方法之前先讲几个个入坑指南吧。
坑1:这个坑主要在于参数“context_object_name",话不多说,直接入题:
在使用ListView和DeleteView的时候,如果你没有更改类视图中默认的context_object_name,一般不会出问题。但是如果更改了,请注意在不同的函数对应的模板中的参数使用。
在视图函数listView和list.html中传递的参数。
在视图函数deleteView和delete.html中传递的参数。
坑2:No URL to redirect to. Either provide a url or define a get_absolute_url method on the Model.
原因:如果没有success_url
# 增加博客目录 class CheditorCategoryCreateView(LoginRequiredMixin, CreateView): model = ArticleCategory template_name = 'cheditorBlog/category_create.html' fields = ['title'] # 如果没有success_url,会报错No URL to redirect to. Either provide a url or define a get_absolute_url method on the Model. success_url = reverse_lazy('blog:cheditorCategory_list')
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)