2

我是 django 的新手,我的问题是如何提供 css 和 js 的链接

{% load staticfiles %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml">
     <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     <title>Welcome</title>   
     <link href="css/templatemo_style.css" rel="stylesheet" type="text/css" />
     <link rel="stylesheet" type="text/css" href="{% static "css/templatemo_style.css" %}" />
     <script type="text/javascript" src="js/jquery.min.js"></script>

css 和 js 未从实际路径加载,不知道如何在我尝试使用的 html 中使用静态文件夹的实际路径

import os
#DIRNAME = os.path.abspath(os.path.dirname(__file__))
DIRNAME = os.path.dirname(__file__)

但它给了我错误的道路

我提供一个简短的描述:

TEMPLATE_DIRS = (
os.path.join(DIRNAME, 'static/'),
}

我的网址是

http://127.0.0.1:8000/blog/home/

错误显示

Template-loader postmortem

Django tried loading these templates, in this order:

Using loader django.template.loaders.filesystem.Loader:
    D:\Eclipse_JEE_new_workspace\testing\testing\static\index.html (File does not exist)
Using loader django.template.loaders.app_directories.Loader:
    C:\Python27\lib\site-packages\django\contrib\auth\templates\index.html (File does not exist)
    C:\Python27\lib\site-packages\django\contrib\admin\templates\index.html (File does not exist)

它显示:

D:\Eclipse_JEE_new_workspace\testing\testing\static\index.html

但实际

如果我在测试文件夹中移动静态文件夹,它是一个没有 css 和 js 链接的 html 页面

D:\Eclipse_JEE_new_workspace\testing\static\index.html

对不起,现在情况是:

当页面加载 css 链接给我一个错误 404 但相同位置 index.html 页面加载
如何包含 css/js?
在当前情况下,我使用
{% include 'header.html' %}
包含在 index.html

4

1 回答 1

1

模板文件应该放在templates文件夹中。并且DIRNAME有通往settings.py.

应该是这样的:

DIRNAME = os.path.join(os.path.dirname(__file__), '..')
TEMPLATE_DIRS = (
    os.path.join(DIRNAME, 'templates/'),
}

并确保您index.htmltemplates文件夹中。

于 2013-08-10T11:25:08.643 回答