在我的Django项目中,我有一个应用程序,我想要加载不在MEDIA_ROOT中的文件。我使用storage
属性来更改位置,但会引发错误。
我使用了下一个代码但是当我尝试加载文件时它会引发错误。我该如何解决这个问题?
settings.py:
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media_root')
models.py:
from django.core.files.storage import FileSystemStorage
from os import environ
PRODUCT_STORAGE = FileSystemStorage(location=environ.get('PRODUCT_STORAGE_PATH'))
def product_file_upload_path(instance, filename):
if instance.category=="1":
path = '/category_1/' + '/%s' % filename
return path
elif instance.category=="2":
path = '/category_2/' + '%s' % filename
return path
else:
path = '%s' % filename
return path
class Product(models.Model):
file = models.FileField(
max_length=255,
blank=True,
null=True,
validators=[validate_file_extension],
storage=PRODUCT_STORAGE,
upload_to=product_file_upload_path,
)
错误:
The joined path (/category_1/test.pdf) is located outside of the base path component (/other_folder)
答案 0 :(得分:1)
删除主斜杠并使用'category_1/'
和'category_2/'
。
您还希望从'/%s'
中删除斜杠,否则您将在路径中以//
结束。您可以使用os.path.join()
来防止此类错误。
import os
path = os.path.join('category1', filename)