본문 바로가기
Back-End/Flask

[ Python ] Flask로 웹사이트 만들기 (2) - html 파일 연결하기

by j-y 2020. 3. 18.
반응형

html 파일 따로 만들어 연결하기


(index.html)
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
</head>
<body>
    Hello Wolrd^-^
</body>
</html>
 
 
(html 파일과 연결)
@app.route("/")             # app 객체를 이용해 라우팅 경로를 설정("/")
def hello():                # 해당 라우팅 경로로 요청이 올 때 실행할 함수를 바로 아래에 작성한다.
    return render_template('index.html')
 
  • 프로젝트 폴더에 'templates' 폴더를 추가한 뒤 html 파일을 추가한다.
 
 
 
반응형

댓글