“Return Flask Html” Kod odpowiedzi

Return Flask Html

from flask import Flask, render_template

@app.route('/my_page')
def returnHTML():
    return render_template('my_page.html')
Cerbrain

Jak zwrócić plik HTML w kolbie

from flask import Flask, render_template

app = Flask(__name__)
@app.route("/")
def index():
    return render_template('index.html') # You have to save the html files
                                         # inside of a 'templates' folder.
    
app.run(debug=True)
Old Pizza

Odpowiedzi podobne do “Return Flask Html”

Pytania podobne do “Return Flask Html”

Więcej pokrewnych odpowiedzi na “Return Flask Html” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu