gpt4 book ai didi

python - Flask 应用程序中 CSS 文件的 404 错误

转载 作者:行者123 更新时间:2023-11-28 19:48:58 25 4
gpt4 key购买 nike

我无法在我的 Flask 应用程序中找到 .css 文件的确切路径。以下是相关代码

layout.html

<!DOCTYPE html>
<html>
<head>
<title>An App</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div id="container">
<div id="heading"><h3>App</h3></div>
{% block content %}{% endblock %}
</div>
</body>
</html>


+app
+static
style.css
+templates
__init__.py
forms.py
models.py
views.py
db_repository
.gitignore
app.db
config.py
db_create.py

+符号的是文件夹

更新:

我在 __init__.py 中试过,结果相同

from flask import Flask
from flask.ext.sqlalchemy import SQLAlchemy
import os
app = Flask(__name__)
app.config.from_object('config')
app._static_folder = os.path.abspath("static/style.css")
print os.path.abspath(app._static_folder)
db = SQLAlchemy(app)

from app import views, models

链接 http://127.0.0.1:5000/static/style.css 给出 404 错误

最佳答案

static应该和templates在同一层级,而不是app下。你试过吗?

关于python - Flask 应用程序中 CSS 文件的 404 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26796039/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com