#******************************************************************************# # ファイル名:main.py # バージョン:Ver1.0 # 機能: # 作成日:2024/11/25 # 更新日:2024/12/7 W004 #*******************************************************************************# # ★render_template をインポート from flask import Flask, render_template app = Flask(__name__) @app.route('/') def hello_show(): return 'Hello World!' @app.route('/index') def index(): # ★(1)追記 insert_dict = { 'insert_1': 'insert_1部分です。', 'insert_2': 'insert_2部分です。', } # ★(2)修正 return render_template('index.html', title='Webアプリテスト', insert_dict=insert_dict) if __name__ == '__main__': app.run() |

0 件のコメント:
コメントを投稿