我有一个名为 blog 和 blog 以及 Post and Categories 模型的应用程序。
url(r'^(?P<slug>[-\w]+)/$', ListView.as_view(
queryset=Post.objects.filter(category=4)[:5],
template_name='blog.html')),
我可以看到上面这样的代码
127.0.0.1/categories/php/
使用上面的 url,我可以看到 5 篇分类为 4 的文章。我想要什么让它动态化。例如,python 是第 3 类
queryset=Post.objects.filter(category='P<pk>\d')[:5]
我试过这个但不工作。还有什么办法吗?