rant_category()有一个意外的关键字参数'slug'
#python #django #帮助

在我的django项目上遇到了一个rant_category() got an unexpected keyword argument 'slug'。基本上,我只需要在我的应用中获取#category的slug即可在URL中显示。

这是我的代码:

views.py

class RantListView(ListView) model = Rant context_object_name = "rants" template_name = "rants/rant_list.html" class