如何在 Django 1.7 中为特定目录提供可能的子目录?
How do I server a specific directory with possible sub directories in Django 1.7?
我有这个 Django 网络应用程序,它允许用户上传各种视频文件。这些目录都在 media 下,并且创建任何子目录以唯一标识文件。我已经在提供静态文件,但我只想提供整个 'media' 目录。有什么简单的方法可以解决这个问题吗?
"""
Django settings for elearn project.
For more information on this file, see
https://docs.djangoproject.com/en/1.7/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.7/ref/settings/
"""
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
TEMPLATE_DIRS = (
BASE_DIR + '/templates/',
)
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
#DEBUG = False
TEMPLATE_DEBUG = True
ALLOWED_HOSTS = ['*']
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'lessons',
'registration'
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'app.urls'
WSGI_APPLICATION = 'app.wsgi.application'
# Internationalization
# https://docs.djangoproject.com/en/1.7/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.7/howto/static-files/
STATICFILES_DIRS = (
os.path.join(BASE_DIR, "static"),
'/elearn/static',
)
STATIC_URL = '/static/'
我故意遗漏了敏感凭据。
这也是我目前提供静态文件的方式
) + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
谢谢
这取决于你想用它做什么。对于像文件约会这样简单的事情,您可以将 upload_to
设置为 %Y/%m/%d
。你也可以写一个函数到 return 一个相对 URL 的字符串,像这样:
def widget_file_name(instance, filename):
return '/'.join(['widget', instance.user.username, filename])
class Widget(models.Model):
name = models.CharField(max_length=200)
user = models.ForeignKey(User)
file = models.FileField(upload_to=widget_file_name)
更新
如果您只是在寻找一种方法来提供该媒体目录,您可以随时将其指定为 settings.py 中的 MEDIA_ROOT:
MEDIA_ROOT = '/path/to/media'
现在请记住,在生产中,您应该让您的 Web 服务器(nginx、apache 等)提供静态和媒体文件,因此您需要在任何用作代理通道的地方进行设置网络服务器。要提供此目录中的文件,您还需要设置 MEDIA_URL。 MEDIA_URL = 'media'
通常就足够了
我有这个 Django 网络应用程序,它允许用户上传各种视频文件。这些目录都在 media 下,并且创建任何子目录以唯一标识文件。我已经在提供静态文件,但我只想提供整个 'media' 目录。有什么简单的方法可以解决这个问题吗?
"""
Django settings for elearn project.
For more information on this file, see
https://docs.djangoproject.com/en/1.7/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.7/ref/settings/
"""
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
TEMPLATE_DIRS = (
BASE_DIR + '/templates/',
)
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
#DEBUG = False
TEMPLATE_DEBUG = True
ALLOWED_HOSTS = ['*']
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'lessons',
'registration'
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'app.urls'
WSGI_APPLICATION = 'app.wsgi.application'
# Internationalization
# https://docs.djangoproject.com/en/1.7/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.7/howto/static-files/
STATICFILES_DIRS = (
os.path.join(BASE_DIR, "static"),
'/elearn/static',
)
STATIC_URL = '/static/'
我故意遗漏了敏感凭据。
这也是我目前提供静态文件的方式
) + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
谢谢
这取决于你想用它做什么。对于像文件约会这样简单的事情,您可以将 upload_to
设置为 %Y/%m/%d
。你也可以写一个函数到 return 一个相对 URL 的字符串,像这样:
def widget_file_name(instance, filename):
return '/'.join(['widget', instance.user.username, filename])
class Widget(models.Model):
name = models.CharField(max_length=200)
user = models.ForeignKey(User)
file = models.FileField(upload_to=widget_file_name)
更新
如果您只是在寻找一种方法来提供该媒体目录,您可以随时将其指定为 settings.py 中的 MEDIA_ROOT:
MEDIA_ROOT = '/path/to/media'
现在请记住,在生产中,您应该让您的 Web 服务器(nginx、apache 等)提供静态和媒体文件,因此您需要在任何用作代理通道的地方进行设置网络服务器。要提供此目录中的文件,您还需要设置 MEDIA_URL。 MEDIA_URL = 'media'
通常就足够了