Flask – 静态文件


Web 应用程序通常需要静态文件,例如支持网页显示的JavaScript文件或CSS文件。通常,Web 服务器被配置为为您提供服务,但在开发过程中,这些文件是从包中或模块旁边的static文件夹提供的,并且可以在应用程序的/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 脚本。

<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")
}