flask로 버튼으로 전환하고 싶습니다.

2163 단어 파이썬Flask


할 일



flask에서 「AAAA.html」안에 있는 버튼을 누르면 「BBBB.html」에 천이한다.

환경


  • flask

  • 방법



    flask의 파이썬 내용의 일부

    sample.py
    from flask import Flask, request, render_template
    app = Flask(__name__)
    
    (中略)
    
    @app.route("/BBBB", methods=["POST"])
    def move_BBBB():
        return render_template("BBBB.html")
    
    (後略)
    

    POST가 오면 BBBB.html로 천이하도록 한다.

    templates/AAAA.html
    {% block content %}
    <form action="/BBBB" method="POST">
        <input type="submit" value="ボタン">
    </form>
    {% endblock %}
    

    AAAA.html 안에 버튼을 적어 둡니다.
    BBBB.html도 준비해 둔다.

    이것으로 끝나는 것 같지만, 뭔가 안되는 생각이 든다.

    좋은 웹페이지 즐겨찾기