2

当我尝试访问我的 Django 管理站点时,出现以下错误:

/admin/ 处的 ImportError

没有名为 django.views 的模块

请求方法:GET 请求 URL: http://127.0.0.1:8000/admin/Django 版本:1.4.1 异常类型:ImportError 异常值:

没有名为 django.views 的模块

异常位置:/usr/local/lib/python2.7/dist-packages/django/utils/importlib.py in import_module,第 35 行 Python 可执行文件:/usr/bin/python Python 版本:2.7.3

这是我的 urls.py 文件:

from django.conf.urls import patterns, include, url

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    url(r'^$', include('home.urls')),

    # Uncomment the admin/doc line below to enable admin documentation:
    # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    url(r'^admin/', include(admin.site.urls)),
)

当我评论该行时url(r'^$', include('home.urls')),管理站点再次工作。

我无法弄清楚我的问题是什么。你能帮助我吗?

4

2 回答 2

1

您在代码中其他地方的某个视图中出现错误,该视图正在尝试导入django.views. 管理站点需要导入所有视图才能正确反转 URL,因此即使它不在管理代码本身中也会触发错误。

于 2012-11-12T09:26:36.153 回答
0

我不确定它是否能满足你对正确答案的渴望。我尝试复制这个问题并发现它而不是使用

include('home.urls')

如果你用类似的东西替换它

(admin.site.urls)

或者你也可以使用

url(r'^{{project_name}}', '{{project_name}}.{{app_name}}.views.{{some html template file}}'),

那么它工作正常。希望它至少可以帮助你缩小影响点。

于 2012-11-12T06:19:28.357 回答