tutorial01.txt 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. =====================================
  2. Writing your first Django app, part 1
  3. =====================================
  4. Let's learn by example.
  5. Throughout this tutorial, we'll walk you through the creation of a basic
  6. poll application.
  7. It'll consist of two parts:
  8. * A public site that lets people view polls and vote in them.
  9. * An admin site that lets you add, change, and delete polls.
  10. We'll assume you have :doc:`Django installed </intro/install>` already. You can
  11. tell Django is installed and which version by running the following command
  12. in a shell prompt (indicated by the $ prefix):
  13. .. console::
  14. $ python -m django --version
  15. If Django is installed, you should see the version of your installation. If it
  16. isn't, you'll get an error telling "No module named django".
  17. This tutorial is written for Django |version|, which supports Python 3.6 and
  18. later. If the Django version doesn't match, you can refer to the tutorial for
  19. your version of Django by using the version switcher at the bottom right corner
  20. of this page, or update Django to the newest version. If you're using an older
  21. version of Python, check :ref:`faq-python-version-support` to find a compatible
  22. version of Django.
  23. See :doc:`How to install Django </topics/install>` for advice on how to remove
  24. older versions of Django and install a newer one.
  25. .. admonition:: Where to get help:
  26. If you're having trouble going through this tutorial, please post a message
  27. to |django-users| or drop by `#django on irc.freenode.net
  28. <irc://irc.freenode.net/django>`_ to chat with other Django users who might
  29. be able to help.
  30. Creating a project
  31. ==================
  32. If this is your first time using Django, you'll have to take care of some
  33. initial setup. Namely, you'll need to auto-generate some code that establishes a
  34. Django :term:`project` -- a collection of settings for an instance of Django,
  35. including database configuration, Django-specific options and
  36. application-specific settings.
  37. From the command line, ``cd`` into a directory where you'd like to store your
  38. code, then run the following command:
  39. .. console::
  40. $ django-admin startproject mysite
  41. This will create a ``mysite`` directory in your current directory. If it didn't
  42. work, see :ref:`troubleshooting-django-admin`.
  43. .. note::
  44. You'll need to avoid naming projects after built-in Python or Django
  45. components. In particular, this means you should avoid using names like
  46. ``django`` (which will conflict with Django itself) or ``test`` (which
  47. conflicts with a built-in Python package).
  48. .. admonition:: Where should this code live?
  49. If your background is in plain old PHP (with no use of modern frameworks),
  50. you're probably used to putting code under the Web server's document root
  51. (in a place such as ``/var/www``). With Django, you don't do that. It's
  52. not a good idea to put any of this Python code within your Web server's
  53. document root, because it risks the possibility that people may be able
  54. to view your code over the Web. That's not good for security.
  55. Put your code in some directory **outside** of the document root, such as
  56. :file:`/home/mycode`.
  57. Let's look at what :djadmin:`startproject` created::
  58. mysite/
  59. manage.py
  60. mysite/
  61. __init__.py
  62. settings.py
  63. urls.py
  64. wsgi.py
  65. These files are:
  66. * The outer :file:`mysite/` root directory is a container for your project. Its
  67. name doesn't matter to Django; you can rename it to anything you like.
  68. * :file:`manage.py`: A command-line utility that lets you interact with this
  69. Django project in various ways. You can read all the details about
  70. :file:`manage.py` in :doc:`/ref/django-admin`.
  71. * The inner :file:`mysite/` directory is the actual Python package for your
  72. project. Its name is the Python package name you'll need to use to import
  73. anything inside it (e.g. ``mysite.urls``).
  74. * :file:`mysite/__init__.py`: An empty file that tells Python that this
  75. directory should be considered a Python package. If you're a Python beginner,
  76. read :ref:`more about packages <tut-packages>` in the official Python docs.
  77. * :file:`mysite/settings.py`: Settings/configuration for this Django
  78. project. :doc:`/topics/settings` will tell you all about how settings
  79. work.
  80. * :file:`mysite/urls.py`: The URL declarations for this Django project; a
  81. "table of contents" of your Django-powered site. You can read more about
  82. URLs in :doc:`/topics/http/urls`.
  83. * :file:`mysite/wsgi.py`: An entry-point for WSGI-compatible web servers to
  84. serve your project. See :doc:`/howto/deployment/wsgi/index` for more details.
  85. The development server
  86. ======================
  87. Let's verify your Django project works. Change into the outer :file:`mysite` directory, if
  88. you haven't already, and run the following commands:
  89. .. console::
  90. $ python manage.py runserver
  91. You'll see the following output on the command line:
  92. .. parsed-literal::
  93. Performing system checks...
  94. System check identified no issues (0 silenced).
  95. You have unapplied migrations; your app may not work properly until they are applied.
  96. Run 'python manage.py migrate' to apply them.
  97. |today| - 15:50:53
  98. Django version |version|, using settings 'mysite.settings'
  99. Starting development server at http://127.0.0.1:8000/
  100. Quit the server with CONTROL-C.
  101. .. note::
  102. Ignore the warning about unapplied database migrations for now; we'll deal
  103. with the database shortly.
  104. You've started the Django development server, a lightweight Web server written
  105. purely in Python. We've included this with Django so you can develop things
  106. rapidly, without having to deal with configuring a production server -- such as
  107. Apache -- until you're ready for production.
  108. Now's a good time to note: **don't** use this server in anything resembling a
  109. production environment. It's intended only for use while developing. (We're in
  110. the business of making Web frameworks, not Web servers.)
  111. Now that the server's running, visit http://127.0.0.1:8000/ with your Web
  112. browser. You'll see a "Congratulations!" page, with a rocket taking off.
  113. It worked!
  114. .. admonition:: Changing the port
  115. By default, the :djadmin:`runserver` command starts the development server
  116. on the internal IP at port 8000.
  117. If you want to change the server's port, pass
  118. it as a command-line argument. For instance, this command starts the server
  119. on port 8080:
  120. .. console::
  121. $ python manage.py runserver 8080
  122. If you want to change the server's IP, pass it along with the port. For
  123. example, to listen on all available public IPs (which is useful if you are
  124. running Vagrant or want to show off your work on other computers on the
  125. network), use:
  126. .. console::
  127. $ python manage.py runserver 0:8000
  128. **0** is a shortcut for **0.0.0.0**. Full docs for the development server
  129. can be found in the :djadmin:`runserver` reference.
  130. .. admonition:: Automatic reloading of :djadmin:`runserver`
  131. The development server automatically reloads Python code for each request
  132. as needed. You don't need to restart the server for code changes to take
  133. effect. However, some actions like adding files don't trigger a restart,
  134. so you'll have to restart the server in these cases.
  135. Creating the Polls app
  136. ======================
  137. Now that your environment -- a "project" -- is set up, you're set to start
  138. doing work.
  139. Each application you write in Django consists of a Python package that follows
  140. a certain convention. Django comes with a utility that automatically generates
  141. the basic directory structure of an app, so you can focus on writing code
  142. rather than creating directories.
  143. .. admonition:: Projects vs. apps
  144. What's the difference between a project and an app? An app is a Web
  145. application that does something -- e.g., a Weblog system, a database of
  146. public records or a small poll app. A project is a collection of
  147. configuration and apps for a particular website. A project can contain
  148. multiple apps. An app can be in multiple projects.
  149. Your apps can live anywhere on your :ref:`Python path <tut-searchpath>`. In
  150. this tutorial, we'll create our poll app right next to your :file:`manage.py`
  151. file so that it can be imported as its own top-level module, rather than a
  152. submodule of ``mysite``.
  153. To create your app, make sure you're in the same directory as :file:`manage.py`
  154. and type this command:
  155. .. console::
  156. $ python manage.py startapp polls
  157. That'll create a directory :file:`polls`, which is laid out like this::
  158. polls/
  159. __init__.py
  160. admin.py
  161. apps.py
  162. migrations/
  163. __init__.py
  164. models.py
  165. tests.py
  166. views.py
  167. This directory structure will house the poll application.
  168. Write your first view
  169. =====================
  170. Let's write the first view. Open the file ``polls/views.py``
  171. and put the following Python code in it:
  172. .. code-block:: python
  173. :caption: polls/views.py
  174. from django.http import HttpResponse
  175. def index(request):
  176. return HttpResponse("Hello, world. You're at the polls index.")
  177. This is the simplest view possible in Django. To call the view, we need to map
  178. it to a URL - and for this we need a URLconf.
  179. To create a URLconf in the polls directory, create a file called ``urls.py``.
  180. Your app directory should now look like::
  181. polls/
  182. __init__.py
  183. admin.py
  184. apps.py
  185. migrations/
  186. __init__.py
  187. models.py
  188. tests.py
  189. urls.py
  190. views.py
  191. In the ``polls/urls.py`` file include the following code:
  192. .. code-block:: python
  193. :caption: polls/urls.py
  194. from django.urls import path
  195. from . import views
  196. urlpatterns = [
  197. path('', views.index, name='index'),
  198. ]
  199. The next step is to point the root URLconf at the ``polls.urls`` module. In
  200. ``mysite/urls.py``, add an import for ``django.urls.include`` and insert an
  201. :func:`~django.urls.include` in the ``urlpatterns`` list, so you have:
  202. .. code-block:: python
  203. :caption: mysite/urls.py
  204. from django.contrib import admin
  205. from django.urls import include, path
  206. urlpatterns = [
  207. path('polls/', include('polls.urls')),
  208. path('admin/', admin.site.urls),
  209. ]
  210. The :func:`~django.urls.include` function allows referencing other URLconfs.
  211. Whenever Django encounters :func:`~django.urls.include`, it chops off whatever
  212. part of the URL matched up to that point and sends the remaining string to the
  213. included URLconf for further processing.
  214. The idea behind :func:`~django.urls.include` is to make it easy to
  215. plug-and-play URLs. Since polls are in their own URLconf
  216. (``polls/urls.py``), they can be placed under "/polls/", or under
  217. "/fun_polls/", or under "/content/polls/", or any other path root, and the
  218. app will still work.
  219. .. admonition:: When to use :func:`~django.urls.include()`
  220. You should always use ``include()`` when you include other URL patterns.
  221. ``admin.site.urls`` is the only exception to this.
  222. You have now wired an ``index`` view into the URLconf. Verify it's working with
  223. the following command:
  224. .. console::
  225. $ python manage.py runserver
  226. Go to http://localhost:8000/polls/ in your browser, and you should see the
  227. text "*Hello, world. You're at the polls index.*", which you defined in the
  228. ``index`` view.
  229. .. admonition:: Page not found?
  230. If you get an error page here, check that you're going to
  231. http://localhost:8000/polls/ and not http://localhost:8000/.
  232. The :func:`~django.urls.path` function is passed four arguments, two required:
  233. ``route`` and ``view``, and two optional: ``kwargs``, and ``name``.
  234. At this point, it's worth reviewing what these arguments are for.
  235. :func:`~django.urls.path` argument: ``route``
  236. ---------------------------------------------
  237. ``route`` is a string that contains a URL pattern. When processing a request,
  238. Django starts at the first pattern in ``urlpatterns`` and makes its way down
  239. the list, comparing the requested URL against each pattern until it finds one
  240. that matches.
  241. Patterns don't search GET and POST parameters, or the domain name. For example,
  242. in a request to ``https://www.example.com/myapp/``, the URLconf will look for
  243. ``myapp/``. In a request to ``https://www.example.com/myapp/?page=3``, the
  244. URLconf will also look for ``myapp/``.
  245. :func:`~django.urls.path` argument: ``view``
  246. --------------------------------------------
  247. When Django finds a matching pattern, it calls the specified view function with
  248. an :class:`~django.http.HttpRequest` object as the first argument and any
  249. "captured" values from the route as keyword arguments. We'll give an example
  250. of this in a bit.
  251. :func:`~django.urls.path` argument: ``kwargs``
  252. ----------------------------------------------
  253. Arbitrary keyword arguments can be passed in a dictionary to the target view. We
  254. aren't going to use this feature of Django in the tutorial.
  255. :func:`~django.urls.path` argument: ``name``
  256. --------------------------------------------
  257. Naming your URL lets you refer to it unambiguously from elsewhere in Django,
  258. especially from within templates. This powerful feature allows you to make
  259. global changes to the URL patterns of your project while only touching a single
  260. file.
  261. When you're comfortable with the basic request and response flow, read
  262. :doc:`part 2 of this tutorial </intro/tutorial02>` to start working with the
  263. database.