python django无法获得任何工作视图

时间:2012-04-10 20:08:57

标签: python django

我一直在尝试设置django,以便我可以开始学习它。但我甚至无法显示一个简单的视图。这是我的文件结构:

âââ __init__.py
âââ __init__.pyc
âââ manage.py
âââ media
âââ pages
â   âââ views.py
âââ settings.py
âââ settings.pyc
âââ templates
â   âââ base.html
â   âââ home.html
âââ urls.py
âââ urls.pyc

很抱歉奇怪的sybols,Linux计算机是如何使用tree命令打印出来的。这是我的网址文件:

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

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

urlpatterns = patterns('',
    # Examples:
    url(r'^$', 'testsite.pages.views.home', name='home'),
    # url(r'^testsite/', include('testsite.foo.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))
)

基本上,我希望example.com指向pages.views.home视图。但它找不到它并不断给我错误:Could not import testsite.pages.views. Error was: No module named pages.views

我是python和django的新手,所以我可能会做一些简单的事情。提前谢谢!

3 个答案:

答案 0 :(得分:1)

您需要将__init__.py添加到pages目录,以使其成为python用语中的“包”。

这是python的一些非显而易见的行为。现在你知道了。

答案 1 :(得分:1)

Could not import testsite.pages.views. Error was: No module named pages.views

您需要pages可导入。将__init__.py放在pages目录中。

答案 2 :(得分:0)

我认为您需要在__init__.py目录中创建空白文件pages