TypeError: unsupported operand type(s) for /: 'str' and 'str'

이상해씨·2023년 12월 14일
0
post-custom-banner

에러

TypeError: unsupported operand type(s) for /: 'str' and 'str'

상황

Django의 settings.py에서 static 파일 설정하는 상황

STATIC_URL = '/static/'
STATICFILES_DIRS = [
    BASE_DIR / 'static',
]

해결법

주소 입력시 '/'를 + 혹은 path 패키지를 사용하여 바꿔주기

1. '+' 사용하기

STATIC_URL = '/static/'
STATICFILES_DIRS = [
    BASE_DIR + 'static',
]

2. path 사용하기
Django web에서 이미지 불러오기 포스팅 참고 👈


참고

profile
공부에는 끝이 없다
post-custom-banner

0개의 댓글