Django(장고) BASE_DIR 출력하는 방법!!
Django에서 BASE_DIR 위치를 확인하고 싶을때가 있습니다 이럴때는 아래와 같이 확인하면 됩니다
python manage.py shell
셀 실행 후
from django.conf import settings print(settings.BASE_DIR)
MEDIA_ROOT등도 print를 사용해서 출력해 볼 수 있습니다
Django에서 BASE_DIR 위치를 확인하고 싶을때가 있습니다 이럴때는 아래와 같이 확인하면 됩니다
python manage.py shell
셀 실행 후
from django.conf import settings print(settings.BASE_DIR)
MEDIA_ROOT등도 print를 사용해서 출력해 볼 수 있습니다
스프링 부트 무료 강의 추천입니다
wickdocs.net에서 진행하는 강좌인데 내용도 괜찮고 볼만합니다
2개의 강좌이니 골라서 보시면 됩니다
스프링부트 하루만에 배우기
https://wikidocs.net/book/10382
점프 투 스프링부트
https://wikidocs.net/book/7601
Tableview뷰를 사용하다 보면 Tableview cell의 height를 고정이 아닌 동적으로 크기를 조절해야 될때가 있습니다
일단 viewDidLoad에 아래를 추가 한 다음
tableview.estimatedRowHeight = UITableView.automaticDimension tableview.rowHeight = UITableView.automaticDimension
아래 함수를 추가해 주면 됩니다
func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat { return UITableView.automaticDimension } func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { return UITableView.automaticDimension }
만약 최소 높이를 고정하고 싶다면 스토리 보드에서 height constraint를 >= 조건으로 만들면 최소 조건 크기도 설정할 수 있습니다