“kolba warunkowa według URRL” Kod odpowiedzi

kolba warunkowa według URRL

from flask import Flask
from flask import request
from flask import render_template

app = Flask(__name__)

@app.route('/')
def show_index():
    return render_template('funding.html')

@app.route('/funding')
def show_funding():
    return render_template('funding.html')

if __name__ == '__main__':
    app.run(debug = True) 
Defeated Dogfish

kolba warunkowa według URRL

<!DOCTYPE html>
<html>
<head>
    <title>Template</title>
</head>
<body>
    <h3>You are here: {{ request.path }}</h3>
    {% if request.path == url_for('show_funding') %}
        <script src="{{ url_for ('static', filename='js/funding.js')}}"></script>
    {% endif %}
</body>
</html>
Defeated Dogfish

Odpowiedzi podobne do “kolba warunkowa według URRL”

Pytania podobne do “kolba warunkowa według URRL”

Więcej pokrewnych odpowiedzi na “kolba warunkowa według URRL” w Python

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

Przeglądaj inne języki kodu