index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>메인 페이지</h1>
<a href="/detail">상세 페이지로 가기</a>
<h3>{{ name }}아 안녕!</h3>
</body>
</html>
app.py
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def main():
myname = "sparta"
return render_template("index.html", name = myname)
@app.route('/detail')
def detail():
return render_template("detail.html")
if __name__ == '__main__':
app.run('0.0.0.0', port=5000, debug=True)
main함수에서 myname변수에 sparta를 넣고 index.html을 만들때 name으로 같이 보내준다.
그리고 index.html에서는 name을 쓸수있는 것이다
진자 템플릿 언어로 {{}} 에 담아서 쓴다
728x90
'WEB > python' 카테고리의 다른 글
[python] 크롤링 기본 뼈대 (0) | 2021.06.10 |
---|---|
[python] 미세먼지 api에서 값을 받아와서 동적으로 화면에 보여주기 (0) | 2021.06.09 |
[aws] ec2 서버 오픈하기 (0) | 2021.06.08 |
[python] 사진 업로드 되고 그것을 바로 보여주게 하는 법 (0) | 2021.06.08 |
[python] 리스팅api만들기/ 제목과 내용을 써서 저장하면 바로 나타나게 하기 (0) | 2021.06.08 |