Flask--静态资源

Posted os-linux

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flask--静态资源相关的知识,希望对你有一定的参考价值。

静态资源

from flask import Flask, render_template

app = Flask(__name__, template_folder="templates", static_folder="static", static_url_path="/static")

# template_folder:指定html文件查找目录
# static_folder:指定静态资源存放目录
# static_url_path:HTML中静态资源的标志

# 装饰器形式
# @app.route("/index")
# def index():
#     return render_template("index.html")

# 非装饰器形式
def index():
    return render_template('index.html')
app.add_url_rule('/index', 'index', index)

if __name__ == '__main__':
    app.run()
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
## 引用静态资源的两种方法,推荐第二种
<img src="/static/01.jpg"/>
  
<img src="{{ url_for('static',filename='01.jpg')}}" />
</body>
</html>

以上是关于Flask--静态资源的主要内容,如果未能解决你的问题,请参考以下文章

Flask--静态资源

Flask之加载静态资源

flask静态资源加载

python中Flask项目启动静态资源访问问题

Flask阶段代码

Flask: 静态文件 +