我正在尝试使用通用视图显示特定作者的博客记录:
urlpatterns = patterns('',
url(r'^blog/(?P<uid>[\d+])/$', ListView.as_view(
queryset=Blog.objects.filter(published=True, author=uid),
), name='blog_list'),
但我得到NameError: name 'uid' is not defined
是否可以以这种方式使用 urlconf 命名组?