0
我有我的項目的結構如下:故障與瓶和CSS
templates
index.html
static
style.css
testFlask.py
我嘗試添加style.css
(與url_for
,或手動),但網址localhost:5000/static/style.css
說Page not found
這裏代碼testFlask。潘岳:從
index.html的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')
代碼:
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
最後,我重新創建了我的style.css,現在所有東西都很好。 感謝您的關注!
我們需要看到的代碼中的相關部分在你的模板 –
是的,請從後'testFlask.py'你的代碼。 – jdotjdot
好的,我更新了我的帖子 –