我目前正在构建一个烧瓶应用程序,用于将机器学习模型集成到本地网页上。
我按照标准flask约定整理了html文件:
/应用
/App/Web.py
/App/templates/home.html,page1.html,page2.html
/App/static/style.css,style1.css,style2.css
每个html页面都对应一个特定的样式。 (home->style,page1->style1)
,依此类推。
这是针对Flask应用程序的。
app = Flask(__name__)
@app.route('/',methods=['POST','GET'])
def home():
return render_template("home.html")
if __name__=="__main__":
app.run(debug=True)
这是在home.html中,链接到style.css
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}" >
图像和CSS样式未在Flask服务器上加载。 关于我需要更改以加载图像和样式的任何想法吗?
PS,已经尝试刷新缓存。