결과물

Untitled


데이터 넘겨주기

변수에 원하는 데이터를 넣고, render_template('index.html', 데이터이름=데이터) 방식으로 코드를 추가해주시면 됩니다.

그러면 HTML에서 정해둔 데이터 이름(지금은 data)로 Python 서버의 데이터를 사용할 수 있어요.

app.py

@app.route('/')
def home():
    name = "남궁철"
    return render_template('index.html', data=name)

templates/index.html

<body>
    <h1>안녕, {{ data }}</h1>
</body>

결과

Untitled


데이터 여러개 넘겨주기

딕셔너리를 사용해서 넘겨줍니다.