我在settings.py
中添加了以下内容:
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, '/static/')
urls.py
中的:
urlpatterns = patterns('^/static/$',
# ... the rest of your URLconf goes here ...
url(r'^$', home, name='home'),
url(r'^admin/', include(admin.site.urls))
) + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
models.py
中的:
class Search(models.Model):
question = models.URLField()
query = models.CharField(max_length=255)
views.py
中的:
def home(request):
print ' base dir %s' % BASE_DIR
print ' static dir %s' % STATIC_URL
form = SearchForm()
return render_to_response('base.html', {'form': form},
context_instance=RequestContext(request))
和templates/base.html
:
{% load staticfiles %}
<head>
<link href="{{ STATIC_URL }}bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<title>Walker</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="form-group">
<form name="query">
{{ form.as_p }}
</form>
</div>
</div>
</div>
</div>
</body>
我运行了./manage.py collectstatic
没有问题,正在创建文件夹static
。
当我执行./manage.py runserver
时,我可以在终端中看到此错误:
base dir home / my / code / walker
静态目录/静态/
"GET /static/bootstrap/js/bootstrap.min.js HTTP/1.1" 404 1691
模板正确加载。但是bootstrap没有
几个小时不能弄明白我需要做什么
答案 0 :(得分:2)
如果您将静态文件存储在app/static
以外的位置,我认为您需要在STATICFILES_DIRS
中指定settings.py
,否则将无法收集这些文件:
STATICFILES_DIRS = (
"/path/to/static", #collectstatic will find any app/static directories so do not add those here
)
按default它是空的。
此外,使用href="{% static 'my-static.css' %}"
而不是{{ STATIC_URL }}
您还可以使用findstatic检查服务器是否能够找到您的静态文件。