2

我正在使用 Django 1.5.1。一切都很好。但是一旦我通过 pip 安装了 django-photologue,当我访问管理 url 时就会遇到这个错误:

> **ViewDoesNotExist at /admin/**  
Could not import django.views.generic.list_detail.object_list. Parent module django.views.generic.list_detail does not exist.  
Request Method: GET  
Request URL:    http://localhost:8000/admin/  
Django Version: 1.5.1  
Exception Type: ViewDoesNotExist  
Exception Value:      
Could not import django.views.generic.list_detail.object_list. Parent module   django.views.generic.list_detail does not exist.  
Exception Location: /usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py in get_callable, line 104  
Python Executable:  /usr/bin/python  
Python Version: 2.7.3  

此外,当我运行 syncdb 时,photologue 与数据库同步没有任何错误,我可以将其导入 shell。

关于如何解决此错误的任何想法?

4

2 回答 2

3

替换目录 urls.py photologue 中的文件:

"django.views.generic.date_based" and "django.views.generic.list_detail" on "django.views.generic" 

"object_list" on "list.ListView"
"object_detail" on "detail.DetailView"
"archive_year" on "dates.YearArchiveView"
"archive_month" on "dates.MonthArchiveView"
"archive_day" on "dates.DayArchiveView"

像这样 :)

或阅读:

于 2013-04-29T13:02:09.793 回答
1

django-photologue 很可能是为旧版本的 Django 构建的。看起来新版本的 Django 对通用视图不友好,而是更喜欢基于类的视图。

下载新副本Django 1.5.1显示以下内容:http: //f.cl.ly/items/0k1J261S2J2f3k3C110I/Image%202013.04.20%203%3A44%3A39%20AM.png

Django 1.4.2显示: http: //f.cl.ly/items/152J2U050X0z1j1n0v0D/Image%202013.04.20%203%3A46%3A49%20AM.png

简单地说,新版本的 Django删除了该list_detail文件。

于 2013-04-20T08:47:41.273 回答