Flask 静态文件
Web应用程序通常需要静态文件,如JavaScript文件或支持网页显示的CSS文件。通常情况下,Web服务器配置为为您提供这些文件,但在开发过程中,这些文件将从包中的静态文件夹或模块旁的静态文件夹中提供,并且可以在应用程序上的/static路径下访问。
一个特殊的端点‘static’用于生成静态文件的URL。
在以下示例中,在Flask应用程序的‘/’URL上呈现的HTML按钮的OnClick事件中调用了在hello.js中定义的JavaScript函数。
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")
}