我是Django的新手。首先,我将解释我的问题和我的逻辑。我想让我的文件路径RELATIVE而不是现在的ABSOLUTE所以我可以在我的笔记本电脑和PC上工作,并且一切都按原样显示。
我知道我必须在下面的 settings.py 中更改MEDIA_URL。
MEDIA_URL = os.path.join(BASE_DIR, 'articles/static/articles/media/')
STATIC_URL = os.path.join(BASE_DIR, 'articles/static/')
有意义吗?我的意思是从逻辑上说我从BASE_DIR打印到 C:\ Users \ kevIN3D \ Documents \ GitHub \ articleTestProject \ articleTestSite ,将进入 articles / static / articles / media / 或确实是
BASE_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), os.path.pardir))
是abspath(...)改变一切吗?
settings.py
"""
Django settings for articleTestSite project.
Generated by 'django-admin startproject' using Django 1.8.
For more information on this file, see
https://docs.djangoproject.com/en/1.8/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.8/ref/settings/
"""
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
BASE_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), os.path.pardir))
MEDIA_ROOT = 'C:/Users/kevIN3D/Documents/GitHub/articleTestProject/articleTestSite/articles/static/articles/'
MEDIA_URL = '/media/'
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '2u@9=qkari39(465g+u!2t7*9tt_pdv)%155jdgxnki5#jujje'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = (
'articles',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
)
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',
'django.middleware.security.SecurityMiddleware',
)
ROOT_URLCONF = 'articleTestSite.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'articleTestSite.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.8/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Internationalization
# https://docs.djangoproject.com/en/1.8/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC-5'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.8/howto/static-files/
STATIC_ROOT = 'C:/Users/kevIN3D/Documents/GitHub/articleTestProject/articleTestSite/articles/'
STATIC_URL = '/static/'
urls.py
urlpatterns = [
url(r'^articles/', include('articles.urls')),
url(r'^$', HomePage.as_view(), name='home'),
url(r'^admin/', include(admin.site.urls)),
] + static(settings.MEDIA_ROOT)
我的问题是,当我尝试在我的声明中使用'/'时,它将文件名打印为'C:\ Users \ kevIN3D \ Documents \ GitHub \ articleTestProject \ articleTestSite \ articles / static /',因此它使用了不正确的斜杠自己。
如何让我的页面具有相对文件名?我希望能够在我的笔记本电脑和我的电脑之间进行这项工作,但是目前看来我只能在我的电脑上工作,因为所有的文件名都是绝对的,只是在笔记本电脑上给我断开的链接。
以下是存储库Github Repository的链接。请任何帮助将不胜感激,我完全难过。如果有人可以通过图像和自定义CSS来实现这一点,那么请告诉我你做了什么。这是我第一次尝试将Django文件分发给更多本地主机。
答案 0 :(得分:3)
让我解释一下设置:
将每个文件夹传递给os.path.join()
方法。例如:
os.path.join(BASE_DIR, 'articles', 'static')
此变量将传递给您的模板上下文进程(如果您使用django.template.context_processors.media
),而不进行任何更改。此变量用于建立到静态和媒体内容的客户端链接。
您应手动设置STATIC_URL
和MEDIA_URL
。像那样:
STATIC_URL = "/static/"
MEDIA_URL = "/media/"
然后你可以在模板中使用它们:
<img src="{{STATIC_URL}}img/logo.png">(...)
STATIC_ROOT
用于通过collectstatic
命令将所有静态文件放在一个位置(如果您使用的是django简单服务器,则不应该关心它)。< / p>
当您的django简单服务器(STATICFILES_DIRS
命令)获取要提供的文件时,
manage.py runserver
是该文件夹。如果您将运行collectstatic
命令,则复制的STATICFILES_DIRS
中列出的每个目录的evety文件都将移至STATIC_ROOT
。
MEDIA_ROOT
是Django将保存用户上传文件的文件夹(ImageField
,FileField
)
您应该在STATIC_ROOT
,MEDIA_ROOT
,STATICFILES_DIRS
中使用绝对路径:
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
STATIC_ROOT = os.path.join(BASE_DIR, 'media')
STATICFILES_DIRS = (os.path.join(BASE_DIR, 'example', 'static', 'folder',)
请注意。如果您的应用文件夹中有static
个文件夹,并且您的应用列在INSTALLED_APPS
中,则此文件夹会自动添加到您的STATICFILES_DIRS
。
在urlpatterns之后添加以下内容非常简单:
urlpatterns = patterns('',
... your patterns...
) + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
并且不要忘记包含设置:
from django.conf import settings
运行collectstatic
命令将所有静态内容集中在一个位置。
使用apache / nginx / etc服务器为您的静态和媒体文件夹提供服务:
Alias / media / / path / to / your / media 别名/ static / / path / to / your / static /
答案 1 :(得分:0)
所以我想我弄明白了, 可以这么说,我正在寻找高级别的东西。实际上答案很简单。给自己一个
print(BASE_DIR)
让它吐出 C:\ Users \ kevIN3D \ Documents \ GitHub \ articlesTestProject \ articleTestSite 我意识到我需要做的就是将它附加到我不同的 ROOT 变量
MEDIA_ROOT = 'C:/Users/kevIN3D/Documents/GitHub/articleTestProject/articleTestSite/articles/static/articles/'
是我的旧MEDIA_ROOT,这显然是绝对的。但是,我可以看到它与BASE_DIR共享相同的文件路径,所以我从那里开始
MEDIA_ROOT = 'C:/Users/kevIN3D/Documents/GitHub/articleTestProject/articleTestSite/articles/static/articles/'
成了
MEDIA_ROOT = os.path.join(BASE_DIR, 'articles/static/articles/').replace('\\', '/') #run replace to convert UNIX slashes on Windows slashes
我必须为 STATIC_ROOT
做同样的事情STATIC_ROOT = 'C:/Users/kevIN3D/Documents/GitHub/articleTestProject/articleTestSite/articles/'
成了
STATIC_ROOT = os.path.join(BASE_DIR, 'articles')