我正在努力使用 STATIC_URL 变量为我的模板提取媒体。例如,我有这个代码
{% extends "admin/change_list.html" %}
{% load i18n %}
{% block extrahead %}
<!--[if IE]>
<script type="text/javascript" src="{% firstof STATIC_URL MEDIA_URL %}django_qbe/js/excanvas.js"></script>
<![endif]-->
<script type="text/javascript" src="{% firstof STATIC_URL MEDIA_URL %}django_qbe/js/jquery.js"></script>
每次加载模板时,都会尝试拉出 MEDIA_URL 。如果我将其更改为
{% extends "admin/change_list.html" %}
{% load i18n %}
{% load static %}
{% block extrahead %}
<!--[if IE]>
<script type="text/javascript" src="{% get_static_prefix %}django_qbe/js/excanvas.js"></script>
<![endif]-->
<script type="text/javascript" src="{% get_static_prefix %}django_qbe/js/jquery.js"></script>
我的问题是为什么我的第一个版本的模板不起作用?
答案 0 :(得分:60)
有static context-processor,与media
不同。您需要确保在上下文处理器列表中有django.core.context_processors.static
,因此可以将STATIC_URL
添加到上下文中。
答案 1 :(得分:17)
来自文档:
如果{{STATIC_URL}}在模板中不起作用,则在渲染模板时可能没有使用RequestContext。
答案 2 :(得分:8)
大多数事情已被提及,但要编译并添加一点:
确保settings.py文件正确指定静态文件的位置。正如Steven Keith所写,你应该有类似的东西:
# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/home/media/media.lawrence.com/static/"
STATIC_ROOT = ''
STATIC_URL = '/static/'
ADMIN_MEDIA_PREFIX = '/static/admin/'
import os
# Additional locations of static files
STATICFILES_DIRS = (
os.path.join(os.path.dirname(__file__), 'static'),
)
然后确保您的TEMPLATE_CONTEXT_PROCESSORS包含'django.core.context_processors.static'。如果你的settings.py中没有TEMPLATE_CONTEXT_PROCESSORS条目,那么它默认为下面的条目,你们都很好。
TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.debug',
'django.core.context_processors.i18n',
'django.core.context_processors.media',
'django.core.context_processors.static',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
)
确保在渲染模板时使用RequestContext。 django.shortcuts.render
默认情况下执行此操作(请参阅here),因此您只需调用
from django.shortcuts import render
def myViewFunction(request):
return render(request, 'myTemplate.html')
小心,因为django.shortcuts.render_to_response不会为你做这个,除非你添加一个参数,所以你必须写一些像
from django.shortcuts import render_to_response
def myViewFunction(request):
return render_to_response('myTemplate.html', myContext, context_instance=RequestContext(request))
答案 3 :(得分:7)
对我来说,答案只是停止使用STATIC_URL,而是使用以下内容:
我改变了我的
<link href="{{ STATIC_URL }}css/survey.less" media="screen" rel="stylesheet" type="text/css"/>
为:
<link href="{% static "css/style.less" %}" media="screen" rel="stylesheet" type="text/less"/>
现在它工作正常。更简单,我怀疑这也是现在使用静态(从Django 1.4开始)的稍微“更正确”的方式。有关详细信息,请参阅Django docs。
不要忘记在使用它的模板顶部添加{% load static from staticfiles %}
。
答案 4 :(得分:4)
由于我被指责没有回答这个问题,让我澄清一下思考过程:
My question is why doesn't my first version of this template work?
STATIC_URL is returning a False value
为了确定原因,我将使用以下步骤:
尝试在模板正文中打印 - {{STATIC_URL}}。
检查settings.py以确保设置值 - STATIC_URL ='/ static /'
检查您是否在runserver中正确设置了STATIC文件:
https://docs.djangoproject.com/en/1.3/ref/contrib/staticfiles/
供参考我使用:
# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/home/media/media.lawrence.com/static/"
STATIC_ROOT = ''
STATIC_URL = '/static/'
ADMIN_MEDIA_PREFIX = '/static/admin/'
# Additional locations of static files
STATICFILES_DIRS = (
os.path.join(PROJECT_DIR, 'static'),
)
或Apache别名:
Alias /static /Users/stevenkeith/foo/bar/static
<Directory /Users/stevenkeith/foo/bar/static>
Order deny,allow
Allow from all
</Directory>
或您想要的任何方法,nginx等
答案 5 :(得分:2)