以下内容来自python语言及其应用第九章。
Flask 包中自带了 werkzeug WSGI 库和 jinja2 模板库。
我们将day-3.的bottle例子用Flask写出来。
from flask import Flask app = Flask(__name__, static_folder=‘.‘, static_url_path=‘ ‘) @app.route(‘/‘) def home(): return app.send_static_file(‘index.html‘) @app.route(‘/echo/<thing>‘) def echo(thing): return "Say hello to my friend: %s" % thing app.run(port=9999, debug=True)
时间: 2024-10-11 16:54:54