파이썬 - Flask HTML 정적 페이지 리턴

정태경·2022년 1월 15일
0

Flask 다뤄보기

목록 보기
5/5
post-thumbnail

Rest API - HTML 정적 페이지 리턴하기

from flask import Flask, jsonify, request, render_template

app = Flask(__name__)

@app.route('/html_test')
def hello_html():
    # html file은 templates 폴더에 위치해야 함
    return render_template('test.html')

""" flask의 render_template 메서드를 활용하면 정적 html 페이지를 리턴할 수 있다.
	  html 파일은 반드시 templates 폴더 하위에 위치해야한다. """
profile
現 두나무 업비트 QA 엔지니어, 前 마이리얼트립 TQA 엔지니어

0개의 댓글