Django. The current URL, , didn't match any of these - Python

Узнай цену своей работы

Формулировка задачи:

Using the URLconf defined in MySite.urls, Django tried these URL patterns, in this order: ^admin/ ^polls/ The current URL, , didn't match any of these. Код MySite/urls.py
Листинг программы
  1. from django.conf.urls import include, url
  2. from django.contrib import admin
  3. urlpatterns = [
  4. url(r'^admin/', admin.site.urls),
  5. url(r'^polls/', include('polls.urls')),
  6. ]
Код polls/views.py
Листинг программы
  1. from django.http import HttpResponse
  2.  
  3. def index(request):
  4. return HttpResponse("Hello, world. You're at the polls index.")
Код polls/urls.py
Листинг программы
  1. from django.conf.urls import url
  2. from . import views
  3. urlpatterns = [
  4. url(r'^', views.index, name='index'),
  5. ]

Решение задачи: «Django. The current URL, , didn't match any of these»

textual
Листинг программы
  1. url(r'^', include('polls.urls'))

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

13   голосов , оценка 4.308 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы