我是Django 1.9.5中的新手,并使用Windows作为我的平台。我有一个问题,将我的CSS,图像和js链接到django templage,
这是我的项目结构
这是我的设置页面
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) PROJECT_DIR = os.path.dirname(__file__) STATIC_ROOT = os.path.join(BASE_DIR, 'static') STATIC_URL = '/static/' STATICFILES_DIRS = ( os.path.join(BASE_DIR, 'statics'), ) MEDIA_ROOT = os.path.join(BASE_DIR, 'media') MEDIA_URL = '/media/'
这是我的主要url.py页面
from django.conf import settings from django.conf.urls import include, url from django.conf.urls.static import static from django.contrib import admin from django.contrib.staticfiles.urls import staticfiles_urlpatterns urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^mysite/', include('myapp.urls')), # (r'^media/(?P.*)$', 'django.views.static.serve', # {'document_root': settings.MEDIA_ROOT}), url(r'^media/(?P.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}), ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) urlpatterns += staticfiles_urlpatterns()
这是我的基本html模板
Github链接My project in github 我尝试了所有可能的组合,但在2天内失败了。 任何帮助都将被挪用,我将感激你 谢谢
答案 0 :(得分:5)
{% load staticfiles %}
<link rel="stylesheet" type="text/css" href="{% static 'pathtostaticfile' %}" />
您可以使用statcfiles标记加载静态文件。使用pathtostaticfile是您的静态文件
更多细节 https://docs.djangoproject.com/en/1.9/intro/tutorial06/
答案 1 :(得分:0)
首先在
中添加以下代码urls.py 使用这个库
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
urlpatterns += staticfiles_urlpatterns()
在下面添加以下代码 settings.py
STATIC_URL = '/static/'
STATICFILES_DIRS= [os.path.join(BASE_DIR,'assets'),] # this variable have been created for adding static resourcess
在template(html)文件中,您首先要加载
{% load static %}
<link rel="stylesheet" href=" {% static '/boostrap4.4/bootstrap.min.css' %}">
<link rel="stylesheet" href=" {% static '/fontawesome-free-5.12.1-web/css/all.css' %}">
<link rel="stylesheet" href=" {% static '/css/style.css' %}">