运行本地服务器(./manage.py runserver 0.0.0.0:8000)时,如何查看 STATIC_ROOT 文件夹中的文件?我通过将缩小文件放入由 STATIC_ROOT 指定的目录中,按预期设置了 django-pipeline 和 collectstatic 工作。但是,运行服务器并访问缩小文件(在我的情况下是http://localhost:8000/static/filterpages/js/vendor.js)给我找不到 404 页面。
我的目录树
django_project/
├── filter
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── filterpages
│ ├── admin.py
│ ├── apps.py
│ ├── __init__.py
│ ├── migrations
│ ├── models.py
│ ├── static
│ │ └── filterpages
│ │ ├── js
│ │ └── vendor
│ │ ├── bootstrap.min.js
│ │ └── jquery-2.2.2.min.js
│ ├── templates
│ │ └── filterpages
│ │ ├── index.html
│ ├── templatetags
│ ├── tests.py
│ ├── urls.py
│ └── views.py
├── manage.py
└── staticfiles
├── admin
└── filterpages
├── js
│ ├── vendor.6238a90960e0.js
│ └── vendor.js
└── vendor
├── bootstrap.min.c5b5b2fa19bd.js
├── bootstrap.min.js
├── jquery-2.2.2.min.1d35678c5edb.js
└── jquery-2.2.2.min.js
我的设置.py
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATICFILES_STORAGE = 'pipeline.storage.PipelineStorage'
STATICFILES_DIRS = []
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'pipeline.finders.CachedFileFinder',
'pipeline.finders.PipelineFinder',
'pipeline.finders.FileSystemFinder',
)
PIPELINE = {
'PIPELINE_ENABLED': True,
'JAVASCRIPT': {
'vendor': {
'source_filenames': (
'filterpages/vendor/jquery.min.js',
'filterpages/vendor/bootstrap.min.js',
),
'output_filename': 'filterpages/js/vendor.js',
}
}
}
PIPELINE['JS_COMPRESSOR'] = 'pipeline.compressors.yuglify.YuglifyCompressor'