📅  最后修改于: 2020-10-25 11:30:47             🧑  作者: Mango
Web应用程序通常需要支持网页显示的静态文件,例如JavaScript文件或CSS文件。通常,将Web服务器配置为为您提供服务,但是在开发过程中,这些文件是从程序包中的静态文件夹或模块旁边提供的,可以在应用程序的/ static上找到。
特殊端点“ static”用于生成静态文件的URL。
在以下示例中,在index.html中HTML按钮的OnClick事件上调用了hello.js中定义的javascript函数,该事件在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脚本。
hello.js包含sayHello()函数。
function sayHello() {
alert("Hello World")
}