码迷,mamicode.com
首页 > 其他好文 > 详细

flask静态文件

时间:2019-11-25 23:13:48      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:click   NPU   web应用   str   fun   文件的   head   strong   temp   

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

 

flask静态文件

标签:click   NPU   web应用   str   fun   文件的   head   strong   temp   

原文地址:https://www.cnblogs.com/pfeiliu/p/11931489.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!