0

尝试通过 admin.py 添加媒体文件时,它们没有出现在应有的文件夹中。这是我的代码:

设置.py

MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(os.path.dirname(BASE_DIR), 'static_in_dev', 'media_root')

据我了解,这意味着所有下载的媒体文件都应该保存在project_folder/static_in_dev/media_root

模型.py

class GalleryCupsModel(models.Model):
    photo = models.ImageField(upload_to='cups/%Y/%m/%d')

这应该在 media_root 文件夹中创建带有年/月/日的文件夹“杯子”,不是吗?

管理员.py

class GalleryCupsAdmin(admin.ModelAdmin):
    list_display = ['photo']

admin.site.register(GalleryCupsModel, GalleryCupsAdmin)

网址.py

urlpatterns = [
    url(r"^cups/all/$", "gallery_cups.views.cups", name="cups"),
]

if settings.DEBUG:
    urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
    urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

项目树

├── gallery_cups
│   ├── migrations
│   │   └── __pycache__
│   └── __pycache__
├── LC
│   └── __pycache__
├── static_in_dev
│   ├── media
│   ├── media_root
│   ├── my_static
│   │   ├── css
│   │   ├── img
│   │   └── js
│   └── static_root
│       ├── admin
│       │   ├── css
│       │   ├── fonts
│       │   ├── img
│       │   │   └── gis
│       │   └── js
│       │       ├── admin
│       │       └── vendor
│       │           ├── jquery
│       │           └── xregexp
│       ├── css
│       ├── img
│       │   ├── header
│       │   └── portfolio
│       └── js
└── templates

问题是我通过 admin.py 上传的文件没有出现在 project_folder/static_in_dev/media_root 中,尽管我在 admin.py 面板中看到它们作为添加图像的列表。

我已经搜索了很多,但看起来我错过了一些重要的东西,但无法得到究竟是什么。将感谢任何帮助。

4

1 回答 1

2

从您的项目文件夹结构MEDIA_ROOT中应该定义:

MEDIA_ROOT = os.path.join(BASE_DIR, 'static_in_dev', 'media_root')

因为static_in_dev文件夹位于您的项目目录中,即BASE_DIR.

于 2016-02-02T09:32:51.183 回答