私はurls.pyにジャンゴ名エラー
from django.conf.urls import url
from django.contrib import admin
from django.conf.urls import include
urlpatterns = [
url(r'^testModule/',include(testModule.urls)),
url(r'^admin/', admin.site.urls),
]
を次のコードを持っているとtestModuleは、私のアプリの名前です:
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$',views.index,name='index'),
]
をそして、私のviews.pyが
from django.shortcuts import render
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello")
# Create your views here.
です
ただし、サーバーの実行中に次のエラーが発生します。
line 20: url(r'^testModule/',include(testModule.urls)), NameError: name 'testModule' is not defined
"django.contrib import testModule"にあるということです。私はそれを輸入した。今私はエラーが表示されます:名前をインポートできませんtestModule – Deesha
はい。なぜそれが 'django.contrib'にあると思いますか?おそらくあなたのアプリにあります。 –
「import testModule」または「import testModule.urls」 –