How to link my css, js and image file link in django
我是Django 1.9.5中的新手,并使用Windows作为我的平台。 我有一个问题,将我的CSS,图像和js链接到django templage,
这是我的项目结构
这是我的设置页面
1 2 3 4 5 6 7 8 9 10 11 12 | 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页面
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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链接我的项目在github
我尝试了所有可能的组合,但在2天内失败了。
任何帮助都将被挪用,我将感激你
谢谢
1 2 3 | {% load staticfiles %} <link rel="stylesheet" type="text/css" href="{% static 'pathtostaticfile' %}" /> |
您可以使用statcfiles标记加载静态文件。 使用pathtostaticfile是您的静态文件
更多详情
https://docs.djangoproject.com/en/1.9/intro/tutorial06/