我是Django的新手,并试图弄清楚为什么浏览器不会选择静态css和js文件中的更改。
只有在我运行python manage.py collectstatic
然后重新启动服务器后才能看到所需的结果。
使用Django 1.11和python 2.7
以下是我settings.py
import os
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = [u'customizeittoday.herokuapp.com', u'localhost']
# Application definition
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'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',
],
},
},
]
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.11/howto/static-files/
#STATIC_URL = '/static/'
#static media settings
STATIC_URL = 'https://' + AWS_STORAGE_BUCKET_NAME + '.s3.amazonaws.com/'
MEDIA_URL = STATIC_URL + 'media/'
# STATICFILES_DIRS = ( os.path.join(BASE_DIR, "static"), )
# STATIC_ROOT = 'staticfiles'
ADMIN_MEDIA_PREFIX = STATIC_URL + 'admin/'
STATICFILES_FINDERS = ('django.contrib.staticfiles.finders.FileSystemFinder','django.contrib.staticfiles.finders.AppDirectoriesFinder',)
答案 0 :(得分:0)
这是旧的,但是我怀疑这是因为您将静态文件存储在AWS S3上。默认情况下,S3使用默认的cache-control
标头指定24小时的缓存时间。
您可能应该迁移到使用版本化的静态文件。
您可以使用ManifestStaticFilesStorage,它是通过将哈希值附加到文件名来作为collectstatic
周期的一部分来实现的。默认情况下,它适用于所有文件类型。
如果要使用它,但要指定版本的文件类型,那么我写了an extension,该文件允许您按路径模式将文件列入白名单/黑名单。