Đây là một câu hỏi rất mới bắt đầu. Nhưng tôi bối rối. Làm cách nào để tham chiếu biến cài đặt Django trong model.py?
NameError: name 'PRIVATE_DIR' is not defined
Cũng đã thử rất nhiều thứ khác bao gồm settings.PRIVATE_DIR
settings.py:
PRIVATE_DIR = '/home/me/django_projects/myproject/storage_dir'
models.py:
# Problem is here.
from django.core.files.storage import FileSystemStorage
fs = FileSystemStorage(location=PRIVATE_DIR)
class Customer(models.Model):
lastName = models.CharField(max_length=20)
firstName = models.CharField(max_length=20)
image = models.ImageField(storage=fs, upload_to='photos', blank=True, null=True)
Cách chính xác để làm điều này là gì?
from django.conf import settings
- docs.djangoproject.com/en/dev/topics/settings/…