一個web應用常常須要javascript或css之類的靜態文件來幫助網頁更好的展現內容. 一般, web服務器被用來提供這種靜態文件服務, 但在Flask程序的開發階段, 這些文件須要被放置在Flask應用根目錄下的static文件夾中, 啓動後使用時url前綴以/static
開頭.javascript
在下面的例子中, hello.js文件中定義了一個javascript函數, 這個函數在index.html中能夠被一個按鈕的OnClick事件觸發. 而這個Flask應用在被訪問到'/' url時將index.html渲染.css
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以下:java
function sayHello() { alert("Hello World") }