Flask – 静态文件
网络应用程序通常需要一个静态文件,如 javascript 文件或支持网页显示的 CSS 文件。通常情况下,Web服务器会被配置成为您提供这些文件,但在开发过程中,这些文件会从您的软件包中的 静态 文件夹或您的模块旁边的 静态 文件夹中提供,它将在应用程序的 ** /static** 中可用。
一个特殊的端点’static’被用来生成静态文件的URL。
在下面的例子中,一个定义在 hello.js 中的 javascript 函数在 index.html 中的HTML按钮的 OnClick 事件中被调用,它被呈现在Flask应用程序的 ‘/’ URL中。
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def index():
return render_template("index.html")
if __name__ == '__main__':
app.run(debug = True)
index.html 的HTML脚本在下面给出。
<html>
<head>
<script type = "text/javascript"
src = "{{ url_for('static', filename = 'hello.js') }}" ></script>
</head>
<body>
<input type = "button" onclick = "sayHello()" value = "Say Hello" />
</body>
</html>
hello.js 包含 sayHello() 函数。
function sayHello() {
alert("Hello World")
}