How to manage static files (e.g. images, JavaScript, CSS)¶
ウェブサイトではふつう、画像や JavaScript、CSS などの追加のファイルを配信する必要があります。Django では、こうしたファイルのことを「静的ファイル (static files)」と呼んでいます。静的ファイルの管理を簡単にするために、Django は django.contrib.staticfiles
を提供しています。
このページでは、こうした静的ファイルの配信の仕方について説明します。
静的ファイルの設定¶
django.contrib.staticfiles
が設定ファイルのINSTALLED_APPS
に含まれていることを確認してください。設定ファイルの中で、
STATIC_URL
を設定します。たとえば、次のようになります。STATIC_URL = 'static/'
テンプレート中では、
static
テンプレートタグを使うことで、設定済みのSTATICFILES_STORAGE
を含むある相対パスの URL を生成することができます。{% load static %} <img src="{% static 'my_app/example.jpg' %}" alt="My image">
アプリケーション内に
static
というフォルダを作って静的ファイルを保存してください。例えば、my_app/static/my_app/example.jpg
となります。
ファイルを配信する
これらの設定の手順に加えて、実際に静的ファイルを配信する必要があります。
開発中に django.contrib.staticfiles
を使用する場合には、DEBUG
を True
に設定して runserver
を実行すれば、自動的に設定が行われます。(詳しくは、django.contrib.staticfiles.views.serve()
を参照)
ただし、この方法は 極めて非効率 であり、セキュリティ上の問題がある 可能性が高いため、本番環境で使うべきではありません。
本番環境で静的ファイルを配信するための適切な戦略については、How to deploy static files を読んでください。
プロジェクトには、特定のアプリケーションに紐付けられていない 静的な assets があることがあります。その場合には、アプリケーション内の static/
ディレクトリの他に、設定ファイルでディレクトリのリスト (STATICFILES_DIRS
) を定義して、Django が静的ファイルを検索できるようにすることができます。たとえば、次のように設定します。
STATICFILES_DIRS = [
BASE_DIR / "static",
'/var/www/static/',
]
staticfiles
がファイルを探索する方法について詳しくは、 STATICFILES_FINDERS
のドキュメントを参照してください。
静的ファイルの名前空間
Now we might be able to get away with putting our static files directly
in my_app/static/
(rather than creating another my_app
subdirectory), but it would actually be a bad idea. Django will use the
first static file it finds whose name matches, and if you had a static file
with the same name in a different application, Django would be unable to
distinguish between them. We need to be able to point Django at the right
one, and the best way to ensure this is by namespacing them. That is,
by putting those static files inside another directory named for the
application itself.
You can namespace static assets in STATICFILES_DIRS
by
specifying prefixes.
開発時の静的ファイルの取扱い¶
上で述べたたように django.contrib.staticfiles
を利用する場合、 DEBUG
が True
であれば runserver
は自動的にこの処理を行います。もし INSTALLED_APPS
内に django.contrib.staticfiles
が存在しない場合は、手動で django.views.static.serve()
ビューを用いて静的ファイルを取り扱わなければなりません。
この機能は本番環境で利用するのに適していません! 一般的なデプロイ方法に関しては How to deploy static files を参照ください。
For example, if your STATIC_URL
is defined as static/
, you can
do this by adding the following snippet to your urls.py
:
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
# ... the rest of your URLconf goes here ...
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
注釈
This helper function works only in debug mode and only if
the given prefix is local (e.g. static/
) and not a URL (e.g.
http://static.example.com/
).
またこのヘルパー関数は STATIC_ROOT
のフォルダのみを利用します; django.contrib.staticfiles
のように静的ファイルの探索は行いません。
Finally, static files are served via a wrapper at the WSGI application layer. As a consequence, static files requests do not pass through the normal middleware chain.
ユーザーによりアップロードされるファイルの開発時の取扱い¶
開発中は、ユーザーによってアップロードされたメディアファイルを django.views.static.serve()
ビューを利用している MEDIA_ROOT
から利用できます。
この機能は本番環境で利用するのに適していません! 一般的なデプロイ方法に関しては How to deploy static files を参照ください。
For example, if your MEDIA_URL
is defined as media/
, you can do
this by adding the following snippet to your ROOT_URLCONF
:
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
# ... the rest of your URLconf goes here ...
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
注釈
This helper function works only in debug mode and only if
the given prefix is local (e.g. media/
) and not a URL (e.g.
http://media.example.com/
).
テスト¶
ビルトインのテストクライアント (たとえば、ビルトインの LiveServerTestCase
) ではなく実際の HTTP リクエストを使用してテストを実行している場合、テスト環境が現実の環境をできるだけ忠実に再現できるように、他のコンテンツと同じように静的アセットも配信する必要があります。しかし、LiveServerTestCase
はとても基本的な静的ファイル配信機能しかないため、staticfiles
アプリケーションの探索機能はなく、すでに静的コンテンツは STATIC_ROOT
に集められていることを前提にしています。
Because of this, staticfiles
ships its own
django.contrib.staticfiles.testing.StaticLiveServerTestCase
, a subclass
of the built-in one that has the ability to transparently serve all the assets
during execution of these tests in a way very similar to what we get at
development time with DEBUG = True
, i.e. without having to collect them
using collectstatic
first.
デプロイ¶
django.contrib.staticfiles
には、静的ファイルを単一のディレクトリに集約するための便利な管理コマンドがあるので、静的ファイルを簡単に配信することができます。
STATIC_ROOT
設定で、どのディレクトリから静的ファイルを配信するかを指定します。たとえば:STATIC_ROOT = "/var/www/example.com/static/"
collectstatic
管理コマンドを実行します:$ python manage.py collectstatic
これにより、各 static フォルダから
STATIC_ROOT
のディレクトリにファイルがコピーされます。あなた自身の選択で、ファイルを配信するウェブサーバーを使用してください。How to deploy static files で、静的ファイルに対する一般的なデプロイの戦略を紹介しています。
さらに学ぶ¶
このドキュメントでは、基本および一般的な利用パターンを紹介しました。django.contrib.staticfiles
に含まれるすべての設定、コマンド、テンプレートタグ、およびその他の事項に関する網羅的な詳細は、the staticfiles reference を参照してください。