Questa è una domanda molto per principianti. Ma sono perplesso. Come faccio a fare riferimento a una variabile delle impostazioni Django nel mio model.py?
NameError: name 'PRIVATE_DIR' is not defined
Ho anche provato molte altre cose tra cui 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)
Qual è il modo corretto per farlo?
from django.conf import settings
- docs.djangoproject.com/en/dev/topics/settings/…