4

私はここで多くの答えを読みましたが、私の正確な質問に答えたものはありませんでした。

私はパート1、世論調査を行いました。管理者のパート2を開始しましたが、runserveの後でページにアクセスしようとすると、次のエラーが発生します(私のプロジェクト名はjohnです)。

Page not found (404)
Request Method: GET
Request URL:    http://127.0.0.1:8000/
Using the URLconf defined in john.urls, Django tried these URL patterns, in this order:
^admin/
The current URL, , didn't match any of these.
You're seeing this error because you have DEBUG = True in your Django settings file. ``

私のコード-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'^$', 'newgrid.views.home', name='home'),
    # url(r'^newgrid/', include('newgrid.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)),
)

Models.py:

from django.db import models
import datetime
from django.utils import timezone

# Create your models here.
from django.db import models

class Poll(models.Model):
    question = models.CharField(max_length=200)
    pub_date = models.DateTimeField('date published')
    def __unicode__(self):
        return self.question
    def was_published_recently(self):
        return self.pub_date >= timezone.now() - datetime.timedelta(days=1)


class Choice(models.Model):
    poll = models.ForeignKey(Poll)
    choice = models.CharField(max_length=200)
    votes = models.IntegerField()
    def __unicode__(self):
        return self.choice

settings.py:

# Django settings for newgrid project.

DEBUG = True
TEMPLATE_DEBUG = DEBUG

ADMINS = (
    # ('Your Name', 'your_email@example.com'),
)

MANAGERS = ADMINS

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': 'C:/john/john/johny.db',                      # Or path to database file if using sqlite3.
        'USER': '',                      # Not used with sqlite3.
        'PASSWORD': '',                  # Not used with sqlite3.
        'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
        'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
    }
}

# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# In a Windows environment this must be set to your system time zone.
TIME_ZONE = 'America/Chicago'

# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = 'en-us'

SITE_ID = 1

# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
USE_I18N = True

# If you set this to False, Django will not format dates, numbers and
# calendars according to the current locale.
USE_L10N = True

# If you set this to False, Django will not use timezone-aware datetimes.
USE_TZ = True

# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/home/media/media.lawrence.com/media/"
MEDIA_ROOT = ''

# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
MEDIA_URL = ''

# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/home/media/media.lawrence.com/static/"
STATIC_ROOT = ''

# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = '/static/'

# Additional locations of static files
STATICFILES_DIRS = (
    # Put strings here, like "/home/html/static" or "C:/www/django/static".
    # Always use forward slashes, even on Windows.
    # Don't forget to use absolute paths, not relative paths.
)

# List of finder classes that know how to find static files in
# various locations.
STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
#    'django.contrib.staticfiles.finders.DefaultStorageFinder',
)

# Make this unique, and don't share it with anybody.
SECRET_KEY = 'cl8%_lzxbct-^ebmpje25%r&5*0=$qmv9gw6i$^arox*kr4$_e'

# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',
#     'django.template.loaders.eggs.Loader',
)

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    # Uncomment the next line for simple clickjacking protection:
    # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
)

ROOT_URLCONF = 'newgrid.urls'

# Python dotted path to the WSGI application used by Django's runserver.
WSGI_APPLICATION = 'newgrid.wsgi.application'

TEMPLATE_DIRS = (
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
    # Always use forward slashes, even on Windows.
    # Don't forget to use absolute paths, not relative paths.
)

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    # Uncomment the next line to enable the admin:
    'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    #'django.contrib.admindocs',
    'polls'
)

# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
# the site admins on every HTTP 500 error when DEBUG=False.
# See http://docs.djangoproject.com/en/dev/topics/logging for
# more details on how to customize your logging configuration.
LOGGING = {
    'version': 1,
    'disable_existing_loggers': False,
    'filters': {
        'require_debug_false': {
            '()': 'django.utils.log.RequireDebugFalse'
        }
    },
    'handlers': {
        'mail_admins': {
            'level': 'ERROR',
            'filters': ['require_debug_false'],
            'class': 'django.utils.log.AdminEmailHandler'
        }
    },
    'loggers': {
        'django.request': {
            'handlers': ['mail_admins'],
            'level': 'ERROR',
            'propagate': True,
        },
    }
}

それについてです。そうそう、WinXPのim。

4

6 に答える 6

6

間違ったURLに移動しています。チュートリアルが言うように、

次に、Webブラウザを開き、/admin/ローカルドメインに移動します(http://127.0.0.1:8000/admin/。管理者のログイン画面が表示されます。

于 2012-08-10T21:59:46.907 に答える
3

URLconfで、ルートURLのビューを定義していません。そのため、ブラウザで次のURLで始まるURLを指定した場合にのみ、アプリケーションが機能します。admin/

次の行のコメントを解除します。

# url(r'^$', 'newgrid.views.home', name='home'),

そして、既存のビューに変更'newgrid.views.home'します。おそらく、一時的なリンクを含むプレーンなテンプレートをレンダリングするものです。

于 2012-08-10T21:56:43.640 に答える
2

私はこれがずっと前に尋ねられたことを知っています、しかし多分人々は私がそうであったように同じ問題への答えをまだここで探しています。私にとって、私が作った問題は、私が変更したurls.pyでした。重要なのは、APP urls.pyファイルではなく、PROJECTurls.pyを変更することです。

たとえば、プロジェクトの名前が「mysite」で、APPの名前が「polls」の場合、変更するファイルは次の場所にあります。

/mysite/urls.py

アプリのバージョンではありません(/polls/urls.pyにあります)。

また、/ polls / urls.pyを新しい「名前空間」構文に変更し、/ mysite / urls.pyに変更を加えた後、/ polls / urlsを変更するのを忘れたという、私が行ったエラーに気が狂ったかもしれません。 .pyチュートリアル3の「Writingmoreviews」セクション(https://docs.djangoproject.com/en/1.7/intro/tutorial03/)に記載されている元のコードに戻る

これが誰かに役立つことを願っています。(StackOverflowに貢献するのは初めてです!)

于 2014-09-19T04:58:31.533 に答える
1

私もこのチュートリアルを実行しましたが、パート3で問題が発生し、同じエラーが返されました。私の混乱はディレクトリ構造にありました。

チュートリアルで指定されていると思ったディレクトリにurls.pyファイルを書き込んでいましたが、~/mysite/urls.py実際にはチュートリアルで指定されていました。~/mysite/mysite/urls.py

~mysite/polls/urls.pyチュートリアルでも作成を促すファイルは正しく配置されており、両方の命令セットに内部ディレクトリ(pollsまたはmysite)のみがリストされているのではないかと疑っていたはずです。この問題が発生した後、チュートリアルのパート1を読み直す必要がありましたが、最終的に次のテキストを理解しました。

内部mysite/ディレクトリは、プロジェクトの実際のPythonパッケージです。

于 2015-01-30T04:30:38.270 に答える
0

「mysite/mysite / urls.py」ファイルのurlpatternsクラスで、このステートメント「url(r'^ polls /'、include('polls.urls'))」を試してみてください。そうすれば、必要なものを確認できます。

于 2015-02-22T14:03:16.557 に答える
0

私は同じ問題を抱えており、[mysite / mysite / urls.py]のurls.pyを編集するか、すでにurls.pyを編集している場合は、設定のROOT_URLCONFをurls.pyに変更するという2つの方法で解決策を得ました。 manage.pyが存在するパス。

于 2015-08-03T13:53:23.613 に答える