Part 1 - Getting Started(1-3)
Posted larken
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Part 1 - Getting Started(1-3)相关的知识,希望对你有一定的参考价值。
https://simpleisbetterthancomplex.com/series/2017/09/04/a-complete-beginners-guide-to-django-part-1.html
https://github.com/sibtc/django-beginners-guide/tree/v0.1-lw
#urls.py from django.conf.urls import url from django.contrib import admin from boards import views urlpatterns = [ url(r‘^$‘, views.home, name=‘home‘), url(r‘^admin/‘, admin.site.urls), ] #views.py from django.http import HttpResponse def home(request): return HttpResponse(‘Hello, World!‘)
以上是关于Part 1 - Getting Started(1-3)的主要内容,如果未能解决你的问题,请参考以下文章