upload_to custom
-
Django FileField upload_to Custom 야매 적용기개발 일기 2021. 7. 12. 13:06
서론 필자의 개인 프로젝트 간 사용했던 내용을 저장 및 정리 용도로 쓰는 페이지입니다. 찾으시는 내용이 없을 수 있습니다. Crawler -> Crwaler 오타가 있습니다. FileField upload_to Custom 먼저 filefield의 upload_to 페이지를 보자. 기본적으로 upload_to는 아래와 같이 model 딴에서 간단하게 사용이 가능하다. class MyModel(models.Model): # file will be uploaded to MEDIA_ROOT/uploads upload = models.FileField(upload_to='uploads/') # or... # file will be saved to MEDIA_ROOT/uploads/2015/01/30 upload..