我的项目结构如下:
templates
index.html
static
style.css
testFlask.py
我尝试添加style.css
(使用url_for
,或手动),但 urllocalhost:5000/static/style.css
说Page not found
这里来自 testFlask.py 的代码:
from flask import Flask, render_template, request, session, g, redirect, url_for,flash
app = Flask(__name__)
@app.route('/', methods=['GET'])
def index():
return render_template('index.html')
index.html 中的代码:
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
最后,我重新创建了 style.css,现在一切都很好。感谢关注!