gpt4 book ai didi

html - 在 chrome 开发工具中找不到 404 错误 CSS 文件

转载 作者:行者123 更新时间:2023-11-28 17:14:16 25 4
gpt4 key购买 nike

我已经花了一个半小时阅读有关此问题的其他帖子,但仍未解决。我相信该文件位于正确的位置并且文件路径引用是适当的。我正在本地测试我的 Web 应用程序,试图对其进行一些样式设置,但 chrome 开发工具说找不到 CSS 文件。我正在使用 Python、Google App Engine 和 Jinja2。 Check out the error如果你愿意的话,给你自己。预先感谢您的时间和专业知识!

这是我的 HTML 文件。第二个继承自第一个。

base.html

<!DOCTYPE html>
<html>
<head>

<title>Chores</title>
<link rel="stylesheet" href="static/style.css" type="text/css" />
</head>

<body>
<a href="/" class="main-title">
Chores
</a>

<div id="content">
{% block content %}
{% endblock %}
</div>
</body>

</html>

front.html

{% extends "base.html" %}

{% block content %}

<br>
<br>
<a href="/dochore">Do Chore</a>
&nbsp;
<a href="/addchore"> + Add Chore</a>
&nbsp;
<a href="/removechore"> - Remove Chore</a>
&nbsp;
<a href="/choredetail">Chore Details</a>
<br>
<br>
<br>

{% for chore in chores %}
{{ chore.render() | safe }}
<br><br>
{% endfor %}

{% endblock %}

我的元素目录结构如下...

project-name/
main.py
templates/
HTML files
static/
style.css

这是我的 app.yaml...

application: chorestimemadison
version: 1
runtime: python27
api_version: 1
threadsafe: yes

handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico

- url: .*
script: main.app

libraries:
- name: webapp2
version: "2.5.2"
- name: jinja2
version: latest

最佳答案

您缺少静态目录的处理程序:

handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /static
static_dir: static
- url: .*
script: main.app

Learn more about why this is necessary.

关于html - 在 chrome 开发工具中找不到 404 错误 CSS 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28820560/

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