Bạn có thể chuyển nhiều tham số cho chế độ xem.
Bạn có thể chuyển tất cả biến cục bộ của mình
@app.route('/')
def index():
content = """
teste
"""
user = "Hero"
return render_template('index.html', **locals())
hoặc chỉ chuyển dữ liệu của bạn
def index() :
return render_template('index.html', obj = "object", data = "a223jsd" );
api doc