본문 바로가기
python web framework

flask 폴더에 있는 이미지 불러오기 html

by 타닥타닥 토다토닥 부부 2023. 3. 22.
반응형

- 이미지 위치가 아래와 같을 때

├── static
│   └── image
│       └── main.png
└── templates
    └── main.html

- main.html 을 아래 와같이 작성합니다.

<img src="{{ url_for('static', filename='image/main.png') }}", width="250" height="252"
style=" display:block; margin-left: auto; margin-right: auto;">

 

 

반응형

댓글