1

我正在通过https://docs.djangoproject.com/en/1.4/intro/tutorial02/工作。

将 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('',
    # Examples:
    # url(r'^$', 'mysite.views.home', name='home'),
    # url(r'^mysite/', include('mysite.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)),
)

当我启动运行服务器时,我得到以下信息:

404 error

Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order:
^admin/
The current URL, , didn't match any of these.

有什么明显的我做错了吗?

提前致谢,

账单

4

1 回答 1

2

您没有定义基本网址。你需要类似的东西 -

urlpatterns = patterns('',

    # ...
    url(r'^$', HomeView.as_view())

)

您应该能够在 - localhost:8000/admin/ 看到您的站点(假设您正在运行您的开发服务器python manage.py runserver)。

Django 检查您在 url conf 文件中定义的所有 URL,并查找与您在浏览器中输入的 url 匹配的 URL。如果它找到一个匹配的 URL,那么它会提供由 url 的相应视图返回的 http 响应(HomeView在上面的代码中)。urls.py 文件将 url 与视图匹配。视图返回 http 响应。

查看您收到的错误消息(以及您从url.py文件中包含的代码),您可以看到您的应用程序中只定义了一个 url - admin/. 尝试在任何其他 url 获取页面将失败。

有关更多信息,请查看 django 的 URL Dispatcher 的文档

于 2013-02-07T22:18:28.160 回答