flask静态资源加载

Posted 月疯

tags:

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

 

 

from flask import Flask,render_template

app=Flask(__name__,template_folder='view')

@app.route('/index')
def index():
    return render_template('hello.html')


if __name__ == '__main__':
    app.run(debug=True,port=1000)
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
<!--    <link rel="stylesheet" href="static/css/cssT.css">-->
    <link rel="stylesheet" href=" url_for('static',filename='css/cssT.css')">
</head>
<body>
    <img src="static/image/flask.png"></img>
</body>
</html>

 

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

flask静态资源加载

使用 Vue + Flask 搭建单页应用

网站后端_Python+Flask.0009.FLASK静态资源之默认及自定义资源目录?

Flask--静态资源

如何打包静态库文件

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