0

ダミーの質問のように聞こえるかもしれませんが、Python コードを再コンパイルする必要があるかどうか、または Python コードを処理するサーバーによって実行 (バインディング/レンダリング) されるかどうかはわかりますか?

サンプルプロジェクトから始めて、ページへのリンクを追加しているときに「ページが見つかりません」(404エラー)が表示されたため、お尋ねします。

Using the URLconf defined in httpi.urls, Django tried these URL patterns, in this order:
^$
^piface/
The current URL, mypage.html, didn't match any of these.
You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.

Python コードは次のようになります。

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

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

urlpatterns = patterns('',
    url(r'^$', 'httpi.views.index'),
    url(r'^/mypage.html', 'httpi.views.index'),
    url(r'^piface/', include('httpiface.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)),
)
4

1 に答える 1