我的django项目有点问题。我的静态文件正在加载(img和css),而js文件则没有。我在我的应用程序中创建了一个静态文件夹,其中包含以下结构static/js/my_app/
,其中包含我的js文件。
以下是使用js脚本的模板部分:
<!-- Scripts -->
<script src="{% static 'js/landing/jquery.min.js' %}"></script>
<script src="{% static 'js/landing/jquery.scrolly.min.js' %}"></script>
<script src="{% static 'js/landing/jquery.dropotron.min.js' %}"></script>
<script src="{% static 'js/landing/jquery.scrollex.min.js' %}"></script>
<script src="{% static 'js/landing/util.js' %}"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="{% static 'js/landing/main.js' %}"></script>
这是我的settings.py文件中处理静态文件的部分:
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)
由于
答案 0 :(得分:0)
通常标准建议是app_name / static / app_name / js / file.js
然后在模板中你只需使用:{%static'app_name / js / file_name.js'%},只要正确设置了静态的其他内容。
在您的配置中,您已经完成了static / js / app_name而不是static / app_name / js。
答案 1 :(得分:0)
如果你按照这个步骤意味着你可以直接调用你的js或css文件/static/css/a.css,在模板中,确保 收集静态方法
import os
def root(x):
return os.path.join(os.path.abspath(os.path.dirname(__file__)), '..',x)
MEDIA_ROOT = root('media')
MEDIA_URL = '/media/'
STATIC_ROOT = root('staticstorage')
STATIC_URL = '/static/'
STATICFILES_DIRS = (
root('static'),
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'dajaxice.finders.DajaxiceFinder',
)
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
'django.template.loaders.eggs.Loader',
)
TEMPLATE_DIRS = (
root('templates')
)
TEMPLATE_CONTEXT_PROCESSORS = (
"--------------------------------------"
'django.core.context_processors.media',
'django.core.context_processors.static',
)
url.py
from django.conf.urls import patterns, include, url
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
from django.conf import settings
from django.conf.urls.static import static
admin.autodiscover()
urlpatterns = patterns('',
)
urlpatterns += patterns('',
url(r'^static/(?P<path>.*)$', 'django.views.static.serve',{'document_root': settings.STATIC_ROOT, 'show_indexes': False}),
url(r'^media/(?P<path>.*)$', 'django.views.static.serve',{'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),
)
urlpatterns += staticfiles_urlpatterns()