heroku没有在django app中加载js文件

时间:2018-01-21 13:55:27

标签: javascript python django heroku

我尝试在heroku上部署我的django应用程序,当我打开heroku时它工作正常,但是当我点击按钮或一些字形它们似乎不起作用.js文件和bootstrap cdn js文件不是正在加载。虽然我也尝试了python manage.py collectstatic,但css文件工作正常。它没有抛出任何错误。

我的settings.py:

import os
import dj_database_url

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
db_from_env = dj_database_url.config(conn_max_age=500)
DATABASES['default'].update(db_from_env)

# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.11/howto/static-files/
STATIC_URL = '/static/'
STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')

Requirements.txt:

Django==1.11.6
dj-database-url==0.4.2
django-taggit==0.22.1
gunicorn==19.7.1
Pillow==3.1.2
Markdown==2.6.9
psycopg2==2.7.1
whitenoise==3.3.1

我该如何解决这个问题。谢谢

1 个答案:

答案 0 :(得分:0)

我通过在html文件中包含的bootstrap CDN链接中将http更改为https来解决此问题。