我正在尝试连接烧瓶应用程序(pycharm ide)中的html和css文件,但没有得到如何执行此操作。这是屏幕截图image link
答案 0 :(得分:0)
在模板文件中添加CSS / JS使用:
<link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}">
在flaskdata.py
中(我假设这是主文件)渲染您添加的模板:
from flask import render_template, flash, redirect, request, url_for
@app.route('/')
def index():
return render_template('index.html')
因此,您可以继续在模板中添加静态CSS / JS文件,并在合适的路径中呈现所需的模板。